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:
parent
6e925bedea
commit
f357a908bf
7 changed files with 46 additions and 9 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Reference in a new issue