FileInfo.cpp
资源名称:GGBT.rar [点击查看]
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:
P2P编程
开发平台:
Visual C++
- // FileInfo.cpp: implementation of the CFileInfo class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "testBT.h"
- #include "FileInfo.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CFileInfo::CFileInfo(string strFileName, BLONG lFileLength)
- {
- m_strFilePath = strFileName;
- m_lFileLength = lFileLength;
- }
- CFileInfo::~CFileInfo()
- {
- }