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

IP电话/视频会议

开发平台:

Visual C++

  1. // PExitDataNodeREQ.cpp: implementation of the PExitDataNodeREQ class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "PExitDataNodeREQ.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. PExitDataNodeREQ::PExitDataNodeREQ()
  9. {
  10. this->Tag = PExitDataNodeREQTAG;
  11. }
  12. PExitDataNodeREQ::~PExitDataNodeREQ()
  13. {
  14. }
  15. bool PExitDataNodeREQ::assembleData( void )
  16. {
  17. this->buffer.Resize( 2 * INT_SIZE );
  18. char * now = this->buffer.GetBuffer( );
  19. *( int * )now = this->buffer.GetSize( ); now += INT_SIZE;
  20. *( int * )now = this->Tag; now += INT_SIZE;
  21. return true;
  22. }
  23. bool PExitDataNodeREQ::parseData( CBuffer & buffer )
  24. {
  25. if( ! buffer.GetSize( ) ) return false;
  26. return true;
  27. }