Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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