00001 /* ${copyright}$ */ 00002 /* $Id: BrOrgCreateRsp.H 1040 2009-10-01 17:49:12Z fneves $ */ 00006 #ifndef __BR_ORG_CREATE_RSP_H__ 00007 #define __BR_ORG_CREATE_RSP_H__ 00008 00009 #include <string> 00010 00011 #include "libepp_nicbr.H" 00012 00013 #include "ContactCreateRsp.H" 00014 00015 using std::string; 00016 00017 LIBEPP_NICBR_NS_BEGIN 00018 00020 class BrOrgCreateRsp : public ContactCreateRsp 00021 { 00022 public: 00024 BrOrgCreateRsp(bool reset = true) : ContactCreateRsp(false) 00025 { 00026 if (reset) { 00027 this->reset(); 00028 } 00029 } 00030 00032 void reset() 00033 { 00034 ContactCreateRsp::reset(); 00035 _organization = ""; 00036 } 00037 00039 00042 void set_organization(const string &organization) 00043 { 00044 _organization = organization; 00045 } 00046 00048 00051 string get_organization() const 00052 { 00053 return _organization; 00054 } 00055 00056 protected: 00058 string _organization; 00059 }; 00060 00061 LIBEPP_NICBR_NS_END 00062 #endif //__BR_ORG_CREATE_RSP_H__