#ifndef __DOMAINREM_HPP #define __DOMAINREM_HPP #include "se/DomainAddRem.hpp" /** * Use this to specify attributes to remove from a domain object in a domain * update EPP command service element. The DomainUpdateCommand uses an * instance of this to build the appropriate elements in order to request the * removal of these attributes from a domain object. */ class DomainRem : public DomainAddRem { public: DomainRem(const std::vector *nameservers, const std::vector *techContacts, const std::vector *adminContacts, const std::vector *billingContacts, const std::vector *statuses) : DomainAddRem(AddRemType::REM(), nameservers, techContacts, adminContacts, billingContacts, statuses) { } }; #endif // __DOMAINREM_HPP