/ghost/commandpacket.h

http://ghostcb.googlecode.com/ · C Header · 44 lines · 16 code · 6 blank · 22 comment · 0 complexity · 2bb98a0f561c2cbaf25f75fa3e018fd1 MD5 · raw file

  1. /*
  2. Copyright [2008] [Trevor Hogan]
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. CODE PORTED FROM THE ORIGINAL GHOST PROJECT: http://ghost.pwner.org/
  13. */
  14. #ifndef COMMANDPACKET_H
  15. #define COMMANDPACKET_H
  16. //
  17. // CCommandPacket
  18. //
  19. class CCommandPacket
  20. {
  21. private:
  22. unsigned char m_PacketType;
  23. int m_ID;
  24. BYTEARRAY m_Data;
  25. public:
  26. CCommandPacket( unsigned char nPacketType, int nID, BYTEARRAY nData );
  27. ~CCommandPacket( );
  28. unsigned char GetPacketType( ) { return m_PacketType; }
  29. int GetID( ) { return m_ID; }
  30. BYTEARRAY GetData( ) { return m_Data; }
  31. };
  32. #endif