#ifndef __LPEDOMAIN_CHECK_COMMAND_HPP #define __LPEDOMAIN_CHECK_COMMAND_HPP #include "se/DomainCheckCommand.hpp" #include "se/StandardObjectType.hpp" #include #include /** * A DomainCheckCommand is used to check the availability of domain objects * in a Registry. Instances of this class generate RFC3730 and RFC3731 * compliant domain check EPP command service elements via the toXML method. * * @see DomainCheckResponse */ class LPECheckCommand : public DomainCheckCommand { public: /** * Check the availability of the single identified domain. * * @param name The name of the domain to check the availability of. */ LPECheckCommand (const std::string &name) : DomainCheckCommand ( name) {}; /** * Check the availability of at least one domain. * * @param names The names of the domains to check the availability of. */ LPECheckCommand (std::vector &names) : DomainCheckCommand ( names) {}; }; #endif // __LPEDOMAIN_CHECK_COMMAND_HPP