ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme.h
Revision: 1.8
Committed: Sun Sep 9 20:05:51 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.7: +2 -3 lines
Log Message:
- changed configurations to the c++ stdlib
- more #defines to enum
- removed getopt.h and link.h from the system as they were unused
- reworked logstreams
- added an itoa with old syntax
- made klines objects
- moved some global variables into appropriate classes
- fixed boost.foreach's compiler workaround #if's
- allow other files to add exceptions with ADD_EXCEPTION
- changed mynick_t to c++ object
- moved servers.h out of atheme.h
- corrected PING from inspircd 1.2

File Contents

# User Rev Content
1 pippijn 1.1 /*
2 pippijn 1.4 * Copyright © 2003-2004 E. Will et al.
3 pippijn 1.2 * Rights to this code are documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * Includes most headers usually needed.
6     *
7 pippijn 1.8 * $Id: atheme.h,v 1.7 2007-09-05 11:23:13 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef ATHEME_H
11     #define ATHEME_H
12    
13     #define E extern
14     #define DLE
15    
16 pippijn 1.5 #include "svsconfig.h"
17 pippijn 1.1 #include "stdinc.h"
18     #include "i18n.h"
19     #include "forwards.h"
20     #include "common.h"
21     #include "dlink.h"
22     #include "object.h"
23     #include "event.h"
24 pippijn 1.4 #include "privs.h"
25 pippijn 1.1 #include "atheme_string.h"
26 pippijn 1.4 #include <common/memory.h>
27 pippijn 1.1 #include "table.h"
28     #include "channels.h"
29     #include "md5.h"
30     #include "match.h"
31     #include "account.h"
32     #include "tools.h"
33 pippijn 1.8 #include "logger.h"
34 pippijn 1.1 #include "global.h"
35     #include "flags.h"
36     #include "phandler.h"
37     #include "servtree.h"
38     #include "services.h"
39     #include "commandtree.h"
40     #include "users.h"
41     #include "sourceinfo.h"
42    
43     #endif /* ATHEME_H */