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_CONTACTDELETEREQ_H
00029 #define __EPP_CONTACTDELETEREQ_H
00030
00036 #include "epp_contactdata.h"
00037 #include "epp_GenericReq.h"
00038
00039 namespace eppobject { namespace contact {
00040
00043 class epp_ContactDeleteReq : public epp::epp_GenericReq {
00044
00045 public:
00046 eppobject::epp::epp_string_ref m_id;
00048
00049 epp_ContactDeleteReq() {};
00050
00052 virtual ~epp_ContactDeleteReq() {}
00053
00056 epp_ContactDeleteReq(eppobject::epp::epp_Command_ref _m_cmd,
00057 eppobject::epp::epp_string _m_id)
00058 : epp::epp_GenericReq(_m_cmd)
00059 {
00060 m_id.ref(new eppobject::epp::epp_string(_m_id));
00061 };
00062
00064 epp_ContactDeleteReq(eppobject::epp::epp_Command_ref _m_cmd,
00065 eppobject::epp::epp_string_ref _m_id)
00066 : epp::epp_GenericReq(_m_cmd)
00067 {
00068 m_id = _m_id;
00069 };
00070
00071 };
00072
00074 typedef refcnt_ptr<epp_ContactDeleteReq> epp_ContactDeleteReq_ref;
00075
00076 }};
00077
00078 #endif