summaryrefslogtreecommitdiff
path: root/include/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/module.h')
-rw-r--r--include/module.h40
1 files changed, 22 insertions, 18 deletions
diff --git a/include/module.h b/include/module.h
index 3a036503f..780017ce0 100644
--- a/include/module.h
+++ b/include/module.h
@@ -1,39 +1,43 @@
/*
+ * Anope IRC Services
*
- * (C) 2003-2017 Anope Team
- * Contact us at team@anope.org
+ * Copyright (C) 2005-2017 Anope Team <team@anope.org>
*
- * Please read COPYING and README for further details.
+ * This file is part of Anope. Anope is free software; you can
+ * redistribute it and/or modify it under the terms of the GNU
+ * General Public License as published by the Free Software
+ * Foundation, version 2.
*
- * Based on the original code of Epona by Lara.
- * Based on the original code of Services by Andy Church.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see see <http://www.gnu.org/licenses/>.
*/
-#ifndef MODULE_H
-#define MODULE_H
+#pragma once
-#include "access.h"
-#include "account.h"
#include "anope.h"
#include "base.h"
#include "bots.h"
#include "channels.h"
#include "commands.h"
#include "config.h"
+#include "event.h"
#include "extensible.h"
#include "hashcomp.h"
#include "language.h"
#include "lists.h"
#include "logger.h"
#include "mail.h"
-#include "memo.h"
#include "messages.h"
#include "modes.h"
#include "modules.h"
+#include "numeric.h"
#include "opertype.h"
#include "protocol.h"
-#include "regexpr.h"
-#include "regchannel.h"
#include "serialize.h"
#include "servers.h"
#include "service.h"
@@ -46,9 +50,9 @@
#include "users.h"
#include "xline.h"
-#include "modules/pseudoclients/chanserv.h"
-#include "modules/pseudoclients/global.h"
-#include "modules/pseudoclients/memoserv.h"
-#include "modules/pseudoclients/nickserv.h"
-
-#endif // MODULE_H
+#include "modules/chanserv.h"
+#include "modules/nickserv.h"
+#include "modules/botserv.h"
+#include "modules/memoserv.h"
+#include "modules/hostserv.h"
+#include "accessgroup.h"