Changeset 8717 in orxonox.OLD for trunk/src/lib/data
- Timestamp:
- Jun 22, 2006, 2:04:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/data/data_tank.h
r7370 r8717 23 23 24 24 /** initializes the DataTank to be able to load the data */ 25 virtual ErrorMessage init() { }25 virtual ErrorMessage init() { return ErrorMessage(); } 26 26 /** loads the data into the DataTank @param root is the xml root parameter for for loadParams() connection */ 27 virtual ErrorMessage loadData(const TiXmlElement* root = NULL) { }27 virtual ErrorMessage loadData(const TiXmlElement* root = NULL) { return ErrorMessage(); } 28 28 /** unloads the data again from the DataTank */ 29 virtual ErrorMessage unloadData() { }29 virtual ErrorMessage unloadData() { return ErrorMessage(); } 30 30 }; 31 31
Note: See TracChangeset
for help on using the changeset viewer.