]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cap.h
Apply CAP ACK/NAK stuff from nenolod, thanks :)
[user/henk/code/inspircd.git] / src / modules / m_cap.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __CAP_H__
15 #define __CAP_H__
16
17 #include <map>
18 #include <string>
19
20 class CapData
21 {
22  public:
23         irc::string type;
24         std::vector<std::string> wanted;
25         std::vector<std::string> ack;
26         std::vector<std::string> nak;
27         User* user;
28         Module* creator;
29 };
30
31 #endif