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 405B

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