svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef __AZONE_COMMON_ARCHIVE_H
#define __AZONE_COMMON_ARCHIVE_H
#include <list>
#include <string>
#include <stdint.h>
class Archive {
public:
Archive() { }
virtual ~Archive() { }
virtual bool Open(std::string filename) = 0;
virtual bool Close() = 0;
virtual bool Get(std::string filename, char** buffer, size_t& buffer_size) = 0;
virtual bool Exists(std::string filename) = 0;
virtual bool GetFiles(std::string ext, std::list<std::string>& files) = 0;
};
#endif