#ifndef _INMEMORYTAR_H_ #define _INMEMORYTAR_H_ #include #include #include #include #include #include "inmemoryfile.h" // Symbole vom Linker/objcopy extern unsigned char _binary_assets_tar_start[]; extern unsigned char _binary_assets_tar_end[]; /* * this class will always read the assets_tar structure */ class InMemoryTar { private: std::list files; protected: public: InMemoryTar(); ~InMemoryTar(); int FindFile(std::string file, InMemoryFile **imf); }; #endif