Solved some issues and prepared the library for using unordered_map instead of hash_map (C++ TR1). Can only use this when g++-4.0.3 is out
This commit is contained in:
parent
f128fcd86f
commit
bac6644915
11 changed files with 149 additions and 33 deletions
|
|
@ -21,6 +21,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <iostream>
|
||||
|
||||
#include "Sym.h"
|
||||
#include "Interval.h"
|
||||
|
|
@ -142,7 +143,7 @@ extern std::string get_prototypes();
|
|||
|
||||
// reading and writing in internal format
|
||||
extern std::string write_raw(const Sym& sym);
|
||||
extern void write_raw(ostream& os, const Sym& sym);
|
||||
extern void write_raw(std::ostream& os, const Sym& sym);
|
||||
extern Sym read_raw(std::string str);
|
||||
extern Sym read_raw(std::istream& is);
|
||||
extern void read_raw(std::istream& is, Sym& sym);
|
||||
|
|
|
|||
Reference in a new issue