Last change
on this file since 1895 was
1837,
checked in by adrfried, 16 years ago
|
includes fixed
|
-
Property svn:eol-style set to
native
|
File size:
567 bytes
|
Rev | Line | |
---|
[1711] | 1 | |
---|
[1701] | 2 | #ifndef NETWORKCHAT_H |
---|
| 3 | #define NETWORKCHAT_H |
---|
| 4 | |
---|
| 5 | #include <string> |
---|
[1837] | 6 | #include <cstring> |
---|
[1701] | 7 | |
---|
[1711] | 8 | #include "Packet.h" |
---|
[1701] | 9 | |
---|
| 10 | namespace network { |
---|
| 11 | namespace packet { |
---|
| 12 | /** |
---|
| 13 | @author |
---|
| 14 | */ |
---|
[1711] | 15 | class Chat : public Packet |
---|
[1701] | 16 | { |
---|
| 17 | public: |
---|
| 18 | Chat( std::string& message, int clientID ); |
---|
| 19 | Chat( unsigned char* data, int clientID ); |
---|
| 20 | ~Chat(); |
---|
| 21 | |
---|
| 22 | inline unsigned int getSize() const; |
---|
| 23 | bool process(); |
---|
| 24 | |
---|
| 25 | unsigned int getMessageLength(){ return messageLength_; }; |
---|
| 26 | unsigned char *getMessage(); |
---|
| 27 | private: |
---|
| 28 | unsigned int messageLength_; |
---|
| 29 | int clientID_; |
---|
| 30 | }; |
---|
| 31 | |
---|
| 32 | } //namespace packet |
---|
| 33 | } //namespace network |
---|
| 34 | |
---|
| 35 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.