FileInfo.cpp
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // FileInfo.cpp: implementation of the CFileInfo class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "testBT.h"
  6. #include "FileInfo.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CFileInfo::CFileInfo(string strFileName, BLONG lFileLength)
  16. {
  17. m_strFilePath = strFileName;
  18. m_lFileLength = lFileLength;
  19. }
  20. CFileInfo::~CFileInfo()
  21. {
  22. }