You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ActionDelHost.h 417B

1234567891011121314151617181920212223242526
  1. //
  2. // Created by robin on 8/9/15.
  3. //
  4. #ifndef PDNS_SLAVE_ACTIONDELHOST_H
  5. #define PDNS_SLAVE_ACTIONDELHOST_H
  6. # include "DBO/Actions/Action.h"
  7. class ActionDelHost : public Action
  8. {
  9. public:
  10. ActionDelHost();
  11. const std::string getSql() const override;
  12. const std::string &getHost() const;
  13. void setHost(const std::string &host);
  14. private:
  15. std::string _host;
  16. };
  17. #endif //PDNS_SLAVE_ACTIONDELHOST_H