]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/binaryparser.h
Use a common StatementKey structure for Loader and BinaryParser/Writer
[libs/datafile.git] / source / binaryparser.h
index e6735f2435a71c447450ecd58aacbf46342859be..d275290cbece483a6b1ec1b2b6e109da9f5806db 100644 (file)
@@ -2,7 +2,6 @@
 #define MSP_DATAFILE_BINARYPARSER_H_
 
 #include <map>
-#include "binarydict.h"
 #include "parsermode.h"
 #include "type.h"
 
@@ -15,7 +14,7 @@ Parses data in binary format.
 class BinaryParser: public ParserMode
 {
 private:
-       typedef std::map<int, DictEntry> Dictionary;
+       typedef std::map<int, StatementKey> Dictionary;
        typedef std::map<unsigned, std::string> StringMap;
 
        Dictionary dict;