Changeset 8677 in orxonox.OLD for branches/gui/src/lib/data
- Timestamp:
- Jun 21, 2006, 4:49:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/data/data_tank.h
r7370 r8677 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.