Changeset 10817 for code/branches/cpp11_v2/src/modules/portals
- Timestamp:
- Nov 19, 2015, 11:40:28 AM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/modules/portals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/modules/portals/PortalEndPoint.h
r9667 r10817 63 63 virtual ~PortalEndPoint(); 64 64 65 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) ;66 virtual void changedActivity(void) ;65 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; 66 virtual void changedActivity(void) override; 67 67 68 68 inline void setTarget(const std::string & target) //!< add types which are allowed to activate the PortalEndPoint 69 69 { this->trigger_->addTarget(target); } 70 70 71 void XMLEventPort(Element& xmlelement, XMLPort::Mode mode) ;71 void XMLEventPort(Element& xmlelement, XMLPort::Mode mode) override; 72 72 static std::map<unsigned int, PortalEndPoint *> idMap_s; //!< Maps the id of each PortalEndPoint to a pointer to that PortalEndPoint 73 73 inline void setReenterDelay(unsigned int seconds) -
code/branches/cpp11_v2/src/modules/portals/PortalLink.h
r9667 r10817 56 56 PortalLink(Context* context); 57 57 virtual ~PortalLink(); 58 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) ;58 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; 59 59 60 60 inline void setFromID(unsigned int from) //!< set the ID of the PortalEndPoint which should act as the entrance of this link
Note: See TracChangeset
for help on using the changeset viewer.