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

IP电话/视频会议

开发平台:

Visual C++

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