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.

ActionDelDomain.cpp 266B

123456789101112131415
  1. //
  2. // Created by robin on 8/9/15.
  3. //
  4. #include "ActionDelDomain.h"
  5. #include "../../DataAccess/AbstractSql.h"
  6. ActionDelDomain::ActionDelDomain()
  7. {
  8. }
  9. const std::string ActionDelDomain::getSql(AbstractSql* sqlDb) const
  10. {
  11. return sqlDb->getDelDomainQuery(*this);
  12. }