Changeset 7297 for code/branches/doc/src/libraries/tools
- Timestamp:
- Aug 31, 2010, 8:37:29 PM (14 years ago)
- Location:
- code/branches/doc/src/libraries/tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/libraries/tools/ResourceCollection.cc
r5781 r7297 52 52 } 53 53 54 void ResourceCollection::XMLPort(Element& xml Element, XMLPort::Mode mode)54 void ResourceCollection::XMLPort(Element& xmlelement, XMLPort::Mode mode) 55 55 { 56 XMLPortParam(ResourceCollection, "resourceGroup", setResourceGroup, getResourceGroup, xml Element, mode);57 XMLPortObject(ResourceCollection, ResourceLocation, "", addResourceLocation, getResourceLocation, xml Element, mode);56 XMLPortParam(ResourceCollection, "resourceGroup", setResourceGroup, getResourceGroup, xmlelement, mode); 57 XMLPortObject(ResourceCollection, ResourceLocation, "", addResourceLocation, getResourceLocation, xmlelement, mode); 58 58 } 59 59 -
code/branches/doc/src/libraries/tools/ResourceCollection.h
r6105 r7297 44 44 virtual ~ResourceCollection(); 45 45 46 virtual void XMLPort(Element& xml Element, XMLPort::Mode mode);46 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 47 47 48 48 void setResourceGroup(const std::string& resourceGroup); -
code/branches/doc/src/libraries/tools/ResourceLocation.cc
r7174 r7297 56 56 } 57 57 58 void ResourceLocation::XMLPort(Element& xml Element, XMLPort::Mode mode)58 void ResourceLocation::XMLPort(Element& xmlelement, XMLPort::Mode mode) 59 59 { 60 XMLPortParam(ResourceLocation, "path", setPath, getPath, xml Element, mode);61 XMLPortParam(ResourceLocation, "archiveType", setArchiveType, getArchiveType, xml Element, mode);62 XMLPortParam(ResourceLocation, "recursive", setRecursive, getRecursive, xml Element, mode);60 XMLPortParam(ResourceLocation, "path", setPath, getPath, xmlelement, mode); 61 XMLPortParam(ResourceLocation, "archiveType", setArchiveType, getArchiveType, xmlelement, mode); 62 XMLPortParam(ResourceLocation, "recursive", setRecursive, getRecursive, xmlelement, mode); 63 63 if (path_.empty()) 64 64 ThrowException(AbortLoading, "ResourceLocation: No path given."); -
code/branches/doc/src/libraries/tools/ResourceLocation.h
r5781 r7297 46 46 virtual ~ResourceLocation(); 47 47 48 virtual void XMLPort(Element& xml Element, XMLPort::Mode mode);48 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 49 49 50 50 void setPath(const std::string& path) { path_ = path; } -
code/branches/doc/src/libraries/tools/Timer.cc
r7284 r7297 95 95 @param interval The timer-interval in seconds 96 96 @param bLoop If true, the function gets called every 'interval' seconds 97 @param exeuctor A executor of the function to call 97 @param executor A executor of the function to call 98 @param bKillAfterCall If true, the timer will be deleted after the function was executed 98 99 */ 99 100 Timer::Timer(float interval, bool bLoop, const ExecutorPtr& executor, bool bKillAfterCall) -
code/branches/doc/src/libraries/tools/Timer.h
r7284 r7297 85 85 @param interval The timer-interval in seconds 86 86 @param bLoop If true, the function gets called every 'interval' seconds 87 @param object The object owning the timer and the function88 87 @param executor A executor of the function to call 88 @param bKillAfterCall If true, the timer will be deleted after the function was executed 89 89 */ 90 90 void setTimer(float interval, bool bLoop, const ExecutorPtr& executor, bool bKillAfterCall = false)
Note: See TracChangeset
for help on using the changeset viewer.