libepp_nicbr
BrDomainCheckCmd.H
Go to the documentation of this file.
1 /* ${copyright}$ */
2 /* $Id: BrDomainCheckCmd.H 1086 2010-12-10 13:07:28Z eduardo $ */
7 #ifndef __BR_DOMAIN_CHECK_CMD_H__
8 #define __BR_DOMAIN_CHECK_CMD_H__
9 
10 #include "DomainCheckCmd.H"
11 
12 LIBEPP_NICBR_NS_BEGIN
13 
16 {
17 public:
19  BrDomainCheckCmd(bool reset = true) : DomainCheckCmd(false)
20  {
21  if (reset) {
22  this->reset();
23  }
24  }
25 
27 
30  void set_organization(const string& organization)
31  {
32  _organization = organization;
33  }
34 
36 
40  {
41  return _organization;
42  }
43 
45  void reset()
46  {
48  _organization = "";
49  }
50 
51 protected:
53  string _organization;
54 };
55 
56 LIBEPP_NICBR_NS_END
57 #endif //__BR_DOMAIN_CHECK_CMD_H__
void reset()
Reset object attributes.
Definition: BrDomainCheckCmd.H:45
BrDomainCheckCmd(bool reset=true)
Default constructor.
Definition: BrDomainCheckCmd.H:19
EPP DomainCheckCmd Class.
string _organization
organization
Definition: BrDomainCheckCmd.H:53
void reset()
Reset object attributes.
Definition: DomainCheckCmd.H:70
EPP DomainCheckCmd Class.
Definition: DomainCheckCmd.H:24
string get_organization()
Returns organization attribute.
Definition: BrDomainCheckCmd.H:39
void set_organization(const string &organization)
Sets organization attribute.
Definition: BrDomainCheckCmd.H:30
EPP BrDomainCheckCmd extension Class.
Definition: BrDomainCheckCmd.H:15