-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd_ReqAddModDelTeamTask.h
More file actions
34 lines (28 loc) · 943 Bytes
/
cmd_ReqAddModDelTeamTask.h
File metadata and controls
34 lines (28 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef _REQ_ADDMODDELTEAMTASK_CMD_H
#define _REQ_ADDMODDELTEAMTASK_CMD_H
#include "cmd.h"
#include <iostream>
#include <vector>
#include <list>
#include <bson/bson.h>
#include "cmd_s2c.h"
#include "cmd_c2s.h"
#include "nskernel/connection.h"
#include "user.h"
#include "processor.h"
#include "sproxy.h"
class ReqAddModDelTeamTaskCmd:public Cmd
{
public:
ReqAddModDelTeamTaskCmd(){};
virtual ~ReqAddModDelTeamTaskCmd(){};
public:
virtual void handle(Context* ct)throw (CmdException);
virtual int encode(char* dataOut,const int nMaxLen) throw (CmdException){ return 0; };
virtual int decode(const char* dataIn,const int nLenIn)throw (CmdException){ return 0; };
void sendResp(Connection* pConn, s2cCmd::S2CAddModDelTeamTaskBody& s2c, int puid, int seqno);
void SendApprovalTeamTask(Connection* pConn, s2cCmd::SendApprovalTeamTask& s2c, int puid, int seqno);
public:
base::Logger* m_pLog;
};
#endif