Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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