選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }