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

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------//
  2. //                                         //
  3. //  File : S3PServerListDAO.cpp    //
  4. // Author : Yang Xiaodong            //
  5. // Modified : 8/24/2002                //
  6. //                                         //
  7. //-----------------------------------------//
  8. #include "S3PServerListDAO.h"
  9. //////////////////////////////////////////////////////////////////////
  10. // Construction/Destruction
  11. //////////////////////////////////////////////////////////////////////
  12. S3PServerListDAO::S3PServerListDAO( S3PDBConnection* pConn )
  13. {
  14. m_pConn = pConn;
  15. }
  16. S3PServerListDAO::~S3PServerListDAO()
  17. {
  18. }
  19. std::string S3PServerListDAO::GetTableName()
  20. {
  21. return "ServerList";
  22. }
  23. S3PDBConnection* S3PServerListDAO::GetConnection()
  24. {
  25. return m_pConn;
  26. }