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.

Action.h 386B

123456789101112131415161718192021222324252627
  1. //
  2. // Created by robin on 8/9/15.
  3. //
  4. #ifndef PDNS_SLAVE_ACTION_H
  5. #define PDNS_SLAVE_ACTION_H
  6. # include <string>
  7. class Action
  8. {
  9. public:
  10. Action();
  11. virtual ~Action();
  12. virtual const std::string getSql() const = 0;
  13. const std::string &getDomain() const;
  14. void setDomain(const std::string &domain);
  15. private:
  16. std::string _domain;
  17. };
  18. #endif //PDNS_SLAVE_ACTION_H