選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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