Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 19, 2006, 5:18:04 PM (19 years ago)
Author:
bensch
Message:

more doc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/loading/load_param.cc

    r9729 r9763  
    2121#include "debug.h"
    2222/**
    23  * Constructs a new LoadParameter
     23 * @brief Constructs a new LoadParameter
    2424 * @param root the XML-element to load this Parameter from
    2525 * @param paramName the Parameter to load
    2626 * @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.).
    2828 */
    2929LoadParamBase::LoadParamBase(const TiXmlElement* root, const std::string& paramName, BaseObject* object, bool inLoadCycle)
     
    5454
    5555
    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 */
    5764CLoadParam::CLoadParam(const TiXmlElement* root, const std::string& paramName, BaseObject* object, Executor<const SubString>* executor, bool inLoadCycle)
    5865    : LoadParamBase(root, paramName, object, inLoadCycle)
Note: See TracChangeset for help on using the changeset viewer.