Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/loading/load_param_xml.cc @ 9763

Last change on this file since 9763 was 9763, checked in by bensch, 18 years ago

more doc

File size: 1.3 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOADING
17
18#include "util/loading/load_param_xml.h"
19#include "load_param_description.h"
20
21
22/**
23 * @brief generates a LoadParam based on
24 * @param root the Root Element to load onto the object.
25 * @param paramName the Parameter name that is loaded.
26 * @param object the Object to apply the changes on.
27 * @param executor the Functional Object, that actually executes the function Call.
28 * @param inLoadCycle If we are inside of a loading cycle. (Loading will be different here)
29 */
30XmlLoadParam::XmlLoadParam(const TiXmlElement* root, const std::string& paramName, BaseObject* object, Executor<const TiXmlElement*>* executor, bool inLoadCycle )
31    : LoadParamBase(root, paramName, object, inLoadCycle)
32{
33  this->executor = executor;
34}
35
36
37XmlLoadParam::~XmlLoadParam()
38{
39  assert(this->object != NULL);
40
41  (*this->executor)(this->object, this->loadElem);
42
43  delete this->executor;
44}
Note: See TracBrowser for help on using the repository browser.