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

模拟服务器

开发平台:

C/C++

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