]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cap.h
1495289345c1d15740c157e1d7d98aa4c04754a4
[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         irc::string parameter;
25         User* user;
26         Module* creator;
27 };
28
29 #endif