選択できるのは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. }