![]() |
TSunmix 0.2
|
00001 /* 00002 * File: MixData.h 00003 * Author: ivosh-l 00004 * 00005 * Created on 29. prosinec 2011, 16:28 00006 */ 00007 00008 #ifndef MIXDATA_H 00009 #define MIXDATA_H 00010 #include <fstream> 00011 #include <vector> 00012 #include <string> 00013 #include <sstream> 00014 00015 00016 class MixData { 00017 public: 00018 MixData(std::ifstream * fh, unsigned int offset, unsigned int size); 00019 MixData(std::string filePath); 00020 MixData(const MixData& orig); 00021 virtual ~MixData(); 00022 00023 std::vector<std::string> getFileNames(){ return filename; } 00024 private: 00025 char * data; 00026 int dsize; 00027 std::vector<std::string> filename; 00028 }; 00029 00030 #endif /* MIXDATA_H */ 00031