00001 00024 #ifndef _PERSISTANTREADER_H 00025 #define _PERSISTANTREADER_H 00026 00027 #include "PersistantWriter.h" 00028 #include "../thirdparty/scew/types.h" 00029 00033 class PersistantReader { 00035 friend class PersistantWriter; 00036 00037 private: 00039 map<string, featureparams> data; 00040 00041 public: 00050 PersistantReader(const char *file); 00052 featureparams *getPersistantData(string feature); 00053 }; 00054 00055 #endif // _PERSISTANTREADER_H 00056