Rename some functions instead of overloading them

It's more clear this way.
This commit is contained in:
Andrew Ayer
2014-03-28 13:51:10 -07:00
parent 6a454b1fa1
commit cd5f3534aa
3 changed files with 10 additions and 10 deletions

View File

@@ -64,8 +64,8 @@ public:
void load (std::istream&);
void store (std::ostream&) const;
bool load (const char* filename);
bool store (const char* filename) const;
bool load_from_file (const char* filename);
bool store_to_file (const char* filename) const;
void generate ();