summaryrefslogtreecommitdiff
path: root/include/mode.h
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-11-15 18:26:35 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-11-15 18:26:35 +0000
commitd3747f2943c403863bc31c8d3e9802ccc763f4d3 (patch)
tree7b3f110edbf8796b4f0fda3ca1c37d45b29d9552 /include/mode.h
parentdf37ab42f454e3a96d59a2a86eb76bcb4af0818a (diff)
Add ModeHandler* versions of channel mode access
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12133 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/mode.h')
-rw-r--r--include/mode.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/mode.h b/include/mode.h
index f4e5e8a60..f1768f559 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -14,11 +14,7 @@
#ifndef __MODE_H
#define __MODE_H
-/* Forward declarations. */
-class User;
-
#include "ctables.h"
-#include "channels.h"
/**
* Holds the values for different type of modes
@@ -214,7 +210,7 @@ class CoreExport ModeHandler : public classbase
* Returns the mode character this handler handles.
* @return The mode character
*/
- char GetModeChar();
+ inline char GetModeChar() { return mode; }
/** For user modes, return the current parameter, if any
*/