Zipios++

commontest.h

00001 #ifndef ZIPIOS_COMMONTEST_H
00002 #define ZIPIOS_COMMONTEST_H
00003 
00004 #include <string>
00005 #include <vector>
00006 
00007 namespace zipios {
00008 
00009   class TestFiles : public std::vector<std::string> {
00010   public:
00011     TestFiles() {
00012       push_back("all_tests");
00013       push_back("file1.txt");
00014       push_back("file2.txt");
00015       push_back("file3.txt");
00016     }
00017     static const std::string TEST_ZIPFILE_NAME;
00018   };
00019 
00020 
00021 } // namespace
00022 
00023 #endif