您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Action.cpp 385B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Created by robin on 8/9/15.
  3. //
  4. #include "Action.h"
  5. Action::Action()
  6. {
  7. }
  8. Action::~Action()
  9. {
  10. }
  11. const std::string &Action::getDomain() const
  12. {
  13. return _domain;
  14. }
  15. void Action::setDomain(const std::string &domain)
  16. {
  17. _domain = domain;
  18. }
  19. const std::string Action::getDhcpConf() const
  20. {
  21. return getDhcp();
  22. }
  23. const std::string Action::getDhcp() const
  24. {
  25. return "";
  26. }