Changeset 9763 in orxonox.OLD for branches/new_class_id/src/lib/util/loading/load_param.cc
- Timestamp:
- Sep 19, 2006, 5:18:04 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/util/loading/load_param.cc
r9729 r9763 21 21 #include "debug.h" 22 22 /** 23 * Constructs a new LoadParameter23 * @brief Constructs a new LoadParameter 24 24 * @param root the XML-element to load this Parameter from 25 25 * @param paramName the Parameter to load 26 26 * @param object the BaseObject, to load this parameter on to (will be cast to executor's Parameter) 27 * @param executor the Executor, that executes the loading procedure.27 * @param inLoadCycle If we are in a LoadCycle (loading differs.). 28 28 */ 29 29 LoadParamBase::LoadParamBase(const TiXmlElement* root, const std::string& paramName, BaseObject* object, bool inLoadCycle) … … 54 54 55 55 56 56 /** 57 * @brief generates a LoadParam based on 58 * @param root the Root Element to load onto the object. 59 * @param paramName the Parameter name that is loaded. 60 * @param object the Object to apply the changes on. 61 * @param executor the Functional Object, that actually executes the function Call. 62 * @param inLoadCycle If we are inside of a loading cycle. (Loading will be different here) 63 */ 57 64 CLoadParam::CLoadParam(const TiXmlElement* root, const std::string& paramName, BaseObject* object, Executor<const SubString>* executor, bool inLoadCycle) 58 65 : LoadParamBase(root, paramName, object, inLoadCycle)
Note: See TracChangeset
for help on using the changeset viewer.