| Revision: | 1.2 |
| Committed: | Tue Aug 28 17:08:06 2007 UTC (19 years ago) by pippijn |
| Content type: | text/plain |
| Branch: | MAIN |
| Changes since 1.1: | +10 -2 lines |
| Log Message: | - changed name - updated the example config to the new system - added more documentation - enhanced documentation generators - added a link to the pdf to the website - added an RSS feed generator - transitioned hooks to c++ callbacks - did various merges with upstream along the way - added const where appropriate - removed the old block allocator - fixed most memory leaks - transitioned some dictionaries to std::map - transitioned some lists to std::vector - made some free functions members where appropriate - renamed string to dynstr and added a static string ststr - use NOW instead of time (NULL) if possible - completely reworked database backends, crypto handlers and protocol handlers to use an object factory - removed the old module system. ermyth does not do any dynamic loading anymore - fixed most of the build system - reworked how protocol commands work |
| # | 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 | * $Id: flags.h,v 1.2 2007-07-21 01:29:07 pippijn Exp $ | ||
| 9 | */ | ||
| 10 | |||
| 11 | pippijn | 1.1 | #ifndef FORWARDS_H |
| 12 | #define FORWARDS_H | ||
| 13 | |||
| 14 | struct user_t; | ||
| 15 | |||
| 16 | struct server_t; | ||
| 17 | |||
| 18 | struct channel_t; | ||
| 19 | struct chanuser_t; | ||
| 20 | struct chanban_t; | ||
| 21 | |||
| 22 | struct operclass_t; | ||
| 23 | struct soper_t; | ||
| 24 | struct myuser_t; | ||
| 25 | struct mynick_t; | ||
| 26 | struct mychan_t; | ||
| 27 | |||
| 28 | struct service_t; | ||
| 29 | |||
| 30 | struct sourceinfo_t; | ||
| 31 | |||
| 32 | struct config_file_t; | ||
| 33 | struct config_entry_t; | ||
| 34 | |||
| 35 | #endif |