ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/stdinc.h
Revision: 1.4
Committed: Sun Sep 9 20:05:51 2007 UTC (19 years ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.3: +1 -10 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.3 * Copyright © 2005 William Pitcock et al.
3 pippijn 1.2 * Rights to this code are documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * This is the header which includes all of the system stuff.
6     *
7 pippijn 1.4 * $Id: stdinc.h,v 1.3 2007-08-28 17:08:07 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef STDINC_H
11     #define STDINC_H
12    
13     /* I N C L U D E S */
14 pippijn 1.3 #include <cstdarg>
15     #include <cstdio>
16     #include <cstdlib>
17     #include <cstring>
18     #include <csignal>
19     #include <ctime>
20     #include <cerrno>
21 pippijn 1.1 #include <setjmp.h>
22     #include <sys/stat.h>
23 pippijn 1.3 #include <cctype>
24 pippijn 1.1 #include <regex.h>
25    
26     /* socket stuff */
27     #include <netdb.h>
28     #include <netinet/in.h>
29     #include <unistd.h>
30     #include <grp.h>
31     #include <sys/wait.h>
32     #include <sys/resource.h>
33     #include <sys/socket.h>
34     #include <fcntl.h>
35     #include <arpa/inet.h>
36    
37     #include <sys/types.h>
38    
39     #include <libgen.h>
40     #include <dirent.h>
41    
42     #endif