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

IP电话/视频会议

开发平台:

Visual C++

  1. // POnlineUserREQ.cpp: implementation of the POnlineUserREQ class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "POnlineUserREQ.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. POnlineUserREQ::POnlineUserREQ()
  9. {
  10. this->Tag = POnlineUserREQTAG;
  11. }
  12. POnlineUserREQ::~POnlineUserREQ()
  13. {
  14. }
  15. bool POnlineUserREQ::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;
  21. return true;
  22. }
  23. bool POnlineUserREQ::parseData( CBuffer & buffer )
  24. {
  25. if( ! buffer.GetSize( ) ) return false;
  26. return true;
  27. }