Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "IProperty.hpp"
- namespace GQE
- {
- IProperty::IProperty(std::string theType, const std::string thePropertyID) :
- mType(theType),
- mPropertyID(thePropertyID)
- {
- }
- IProperty::~IProperty()
- {
- }
- IProperty::Type_t* IProperty::GetType(void)
- {
- return &mType;
- }
- const std::string IProperty::GetID(void) const
- {
- return mPropertyID;
- }
- void IProperty::SetType(std::string theType)
- {
- mType = Type_t(theType);
- }
- } // namespace GQE
Advertisement
Add Comment
Please, Sign In to add comment