ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/forwards.h
Revision: 1.3
Committed: Thu Aug 30 19:56:19 2007 UTC (16 years, 9 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -1 lines
Log Message:
- put faultcodes into their own namespace
- removed old files
- limited header garbage in atheme.h
- macros to inline bools for connection_t::is_*
- put some connection_t functions into the connection_t class

File Contents

# User Rev Content
1 pippijn 1.2 /*
2     * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
3     * Rights to this code are as documented in doc/pod/gplicense.pod.
4     *
5     * Make it possible to use pointers to these types everywhere
6     * (for structures used in multiple header files)
7     *
8 pippijn 1.3 * $Id: forwards.h,v 1.2 2007-08-28 17:08:06 pippijn Exp $
9 pippijn 1.2 */
10    
11 pippijn 1.1 #ifndef FORWARDS_H
12     #define FORWARDS_H
13    
14     struct user_t;
15    
16 pippijn 1.3 struct connection_t;
17 pippijn 1.1 struct server_t;
18    
19     struct channel_t;
20     struct chanuser_t;
21     struct chanban_t;
22    
23     struct operclass_t;
24     struct soper_t;
25     struct myuser_t;
26     struct mynick_t;
27     struct mychan_t;
28    
29     struct service_t;
30    
31     struct sourceinfo_t;
32    
33     struct config_file_t;
34     struct config_entry_t;
35    
36     #endif