DataPackage.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // DataPackage.cpp: implementation of the CDataPackage class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "DataPackage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. //////////////////////////////////////////////////////////////////////
  12. // Construction/Destruction
  13. //////////////////////////////////////////////////////////////////////
  14. CDataPackage::CDataPackage()
  15. {
  16. this->Tag = 0;
  17. }
  18. CDataPackage::~CDataPackage()
  19. {
  20. }
  21. bool CDataPackage::assembleData( void )
  22. {
  23. return true;
  24. }
  25. bool CDataPackage::parseData( char * buffer , int size )
  26. {
  27. return true;
  28. }