S3PCardInfoDAO.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // S3PCardInfoDAO.cpp: implementation of the S3PCardInfoDAO class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "S3PCardInfoDAO.h"
  5. #include "S3PDBConnection.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. S3PCardInfoDAO::S3PCardInfoDAO(S3PDBConnection * pConn)
  10. {
  11. m_pConn = pConn;
  12. }
  13. S3PCardInfoDAO::~S3PCardInfoDAO()
  14. {
  15. }
  16. std::string S3PCardInfoDAO::GetTableName()
  17. {
  18. return "cardInfo";
  19. }
  20. S3PDBConnection * S3PCardInfoDAO::GetConnection()
  21. {
  22. return m_pConn;
  23. }