Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 30, 2017, 9:33:27 AM (6 years ago)
Author:
kuchlert
Message:

fixed addQuestion and addAnswer in Dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/Dialog_HS17/src/modules/dialog/AnswerId.cc

    r11607 r11611  
    11#include "AnswerId.h"
     2#include "core/CoreIncludes.h"
    23
    34
     
    1011                RegisterObject(AnswerId);
    1112        }
     13
    1214        void AnswerId::XMLPort(Element& xmlelement, XMLPort::Mode mode)
    1315        {
     
    1719        }
    1820
    19         void AnswerId::setId(std::string Id){
    20                 this->Id_ = Id;
     21        void AnswerId::setId(std::string id)
     22        {
     23                this->id_ = id;
    2124        }
    22         std::string AnswerId::getId(){
    23                 return this->Id_;
     25       
     26        std::string AnswerId::getId()
     27        {
     28                return this->id_;
    2429        }
    2530}
Note: See TracChangeset for help on using the changeset viewer.