- Timestamp:
- Nov 30, 2017, 9:33:27 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialog_HS17/src/modules/dialog/AnswerId.cc
r11607 r11611 1 1 #include "AnswerId.h" 2 #include "core/CoreIncludes.h" 2 3 3 4 … … 10 11 RegisterObject(AnswerId); 11 12 } 13 12 14 void AnswerId::XMLPort(Element& xmlelement, XMLPort::Mode mode) 13 15 { … … 17 19 } 18 20 19 void AnswerId::setId(std::string Id){ 20 this->Id_ = Id; 21 void AnswerId::setId(std::string id) 22 { 23 this->id_ = id; 21 24 } 22 std::string AnswerId::getId(){ 23 return this->Id_; 25 26 std::string AnswerId::getId() 27 { 28 return this->id_; 24 29 } 25 30 }
Note: See TracChangeset
for help on using the changeset viewer.