📄 cbillingpacketheader.h
字号:
/////////////////////////////////////////////////////////////////////// filename : CBillingPacketHeader.h/////////////////////////////////////////////////////////////////////#ifndef __CBILLING_PACKET_HEADER_H__#define __CBILLING_PACKET_HEADER_H__// include files#include "CBillingInfo.h"#include "Exception.h"// forward declarationclass SocketInputStream;class SocketOutputStream;///////////////////////////////////////////////////// class CBillingPacketHeader///////////////////////////////////////////////////class CBillingPacketHeader : public CBillingPacketHeaderInfo{public: // constructor CBillingPacketHeader() throw ();public: void read( SocketInputStream& iStream ) throw ( ProtocolException, Error ); void write( SocketOutputStream& iStream ) throw ( ProtocolException, Error ); string toString() const throw ();};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -