S3PFriendListDAO.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- /**************************************************/
- /* */
- /* 文件名: S3PFriendListDAO */
- /* 描述 : Friend_List表的维护类 */
- /* */
- /* 作者 : Liu Wansong */
- /* 创建日期 : 8/26/2002 */
- /* 修改日期 : 8/26/2002 */
- /**************************************************/
- #include "S3PFriendListDAO.h"
- #include "S3PDBConnection.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- S3PFriendListDAO::S3PFriendListDAO(S3PDBConnection * pConn)
- {
- m_pConn=pConn;
- }
- S3PFriendListDAO::~S3PFriendListDAO()
- {
- }
- S3PDBConnection * S3PFriendListDAO::GetConnection()
- {
- return m_pConn;
- }
- std::string S3PFriendListDAO::GetTableName()
- {
- return "Friend_List";
- }