00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 class TClntMsgReply;
00022 #ifndef CLNTMSGREPLY_H
00023 #define CLNTMSGREPLY_H
00024 #include "ClntMsg.h"
00025
00026 class TClntMsgReply : public TClntMsg
00027 {
00028 public:
00029 TClntMsgReply(SmartPtr<TClntIfaceMgr> IfaceMgr,
00030 SmartPtr<TClntTransMgr> TransMgr,
00031 SmartPtr<TClntCfgMgr> CfgMgr,
00032 SmartPtr<TClntAddrMgr> AddrMgr,
00033 int iface, SmartPtr<TIPv6Addr> addr);
00034
00035 TClntMsgReply(SmartPtr<TClntIfaceMgr> IfaceMgr,
00036 SmartPtr<TClntTransMgr> TransMgr,
00037 SmartPtr<TClntCfgMgr> CfgMgr,
00038 SmartPtr<TClntAddrMgr> AddrMgr,
00039 int iface, SmartPtr<TIPv6Addr> addr, char* buf, int bufSize);
00040
00041 void answer(SmartPtr<TClntMsg> Rep);
00042 void doDuties();
00043 bool check();
00044 string getName();
00045 ~TClntMsgReply();
00046 };
00047
00048 #endif
00049