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.cpp 318B

123456789101112131415161718192021222324
  1. //
  2. // Created by robin on 8/9/15.
  3. //
  4. #include "ActionDelHost.h"
  5. ActionDelHost::ActionDelHost()
  6. {
  7. }
  8. const std::string ActionDelHost::getSql() const
  9. {
  10. return "";
  11. }
  12. const std::string &ActionDelHost::getHost() const
  13. {
  14. return _host;
  15. }
  16. void ActionDelHost::setHost(const std::string &host)
  17. {
  18. _host = host;
  19. }