00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef __EPP_DOMAININFOREQ_H
00029 #define __EPP_DOMAININFOREQ_H
00030
00036 #include "epp_domaindata.h"
00037 #include "epp_GenericReq.h"
00038
00039 namespace eppobject { namespace domain {
00040
00043 class epp_DomainInfoReq : public epp::epp_GenericReq {
00044
00045 public:
00046 eppobject::epp::epp_string_ref m_name;
00048
00049 epp_DomainInfoReq() {};
00050
00052 virtual ~epp_DomainInfoReq() {}
00053
00056 epp_DomainInfoReq(eppobject::epp::epp_Command_ref _m_cmd,
00057 eppobject::epp::epp_string _m_name)
00058 : epp::epp_GenericReq(_m_cmd)
00059 {
00060 m_name.ref(new eppobject::epp::epp_string(_m_name));
00061 };
00062
00064 epp_DomainInfoReq(eppobject::epp::epp_Command_ref _m_cmd,
00065 eppobject::epp::epp_string_ref _m_name)
00066 : epp::epp_GenericReq(_m_cmd)
00067 {
00068 m_name = _m_name;
00069 };
00070 };
00071
00073 typedef refcnt_ptr<epp_DomainInfoReq> epp_DomainInfoReq_ref;
00074
00075 }};
00076
00077 #endif