Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 3, 2009, 6:32:05 PM (15 years ago)
Author:
landauf
Message:

some cleanup in the eventsystem. not sure if everything still works, but there are more changes to come.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core5/src/libraries/core/Identifier.h

    r5783 r5866  
    261261            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapEnd() const { return this->xmlportObjectContainers_.end(); }
    262262
     263            void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
     264            XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
     265
     266            void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
     267            XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
     268
     269
     270            //////////////////
     271            ///// Events /////
     272            //////////////////
    263273            /** @brief Returns the map that stores all XMLPort events. @return The const_iterator */
    264274            inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortEventMap() const { return this->xmlportEventContainers_; }
     
    267277            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort events. @return The const_iterator */
    268278            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortEventMapEnd() const { return this->xmlportEventContainers_.end(); }
    269 
    270             void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
    271             XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
    272 
    273             void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
    274             XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
    275279
    276280            void addXMLPortEventContainer(const std::string& eventname, XMLPortObjectContainer* container);
Note: See TracChangeset for help on using the changeset viewer.