Updated documentation to give proper include file in doxygen and define a module selectors

Also added a load(stream) and save(stream) to eoState
This commit is contained in:
mac 2000-04-09 09:46:20 +00:00
commit f357a908bf
7 changed files with 46 additions and 9 deletions

View file

@ -66,12 +66,26 @@ public :
*/
void load(const std::string& _filename);
/**
* Reads the file specified
*
* @param is the stream to load from
*/
void load(std::istream& is);
/**
* Saves the state in file specified
*
* @param _filename the name of the file to save into
*/
void save(const std::string& _filename) const;
/**
* Saves the state in file specified
*
* @param os the stream to save into
*/
void save(std::ostream& os) const;
private :
std::string createObjectName(eoObject* obj);