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.

Action.cpp 250B

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