summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-12 01:22:26 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-12 01:22:26 +0000
commitff5376b7b682c98c1857c58696db5f8ed4d39b18 (patch)
tree232e85cf7c12e781c28d68c21979b0acac32f8cd /include
parent07715661435c2e932069174a5b43093f09bead32 (diff)
Document base modes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4908 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/modes/cmode_b.h2
-rw-r--r--include/modes/cmode_h.h2
-rw-r--r--include/modes/cmode_i.h2
-rw-r--r--include/modes/cmode_k.h2
-rw-r--r--include/modes/cmode_l.h2
-rw-r--r--include/modes/cmode_m.h2
-rw-r--r--include/modes/cmode_n.h2
-rw-r--r--include/modes/cmode_o.h2
-rw-r--r--include/modes/cmode_p.h2
-rw-r--r--include/modes/cmode_s.h2
-rw-r--r--include/modes/cmode_t.h2
-rw-r--r--include/modes/cmode_v.h2
-rw-r--r--include/modes/umode_i.h2
-rw-r--r--include/modes/umode_n.h2
-rw-r--r--include/modes/umode_o.h2
-rw-r--r--include/modes/umode_s.h2
-rw-r--r--include/modes/umode_w.h2
17 files changed, 34 insertions, 0 deletions
diff --git a/include/modes/cmode_b.h b/include/modes/cmode_b.h
index e17a6909a..eea061751 100644
--- a/include/modes/cmode_b.h
+++ b/include/modes/cmode_b.h
@@ -3,6 +3,8 @@
class InspIRCd;
+/** Channel mode +b
+ */
class ModeChannelBan : public ModeHandler
{
private:
diff --git a/include/modes/cmode_h.h b/include/modes/cmode_h.h
index e1253d03c..cf61726da 100644
--- a/include/modes/cmode_h.h
+++ b/include/modes/cmode_h.h
@@ -3,6 +3,8 @@
class InspIRCd;
+/** Channel mode +h
+ */
class ModeChannelHalfOp : public ModeHandler
{
private:
diff --git a/include/modes/cmode_i.h b/include/modes/cmode_i.h
index b8bea88a8..7a8dd2ad7 100644
--- a/include/modes/cmode_i.h
+++ b/include/modes/cmode_i.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +i
+ */
class ModeChannelInviteOnly : public ModeHandler
{
public:
diff --git a/include/modes/cmode_k.h b/include/modes/cmode_k.h
index 16769b572..4c52e6443 100644
--- a/include/modes/cmode_k.h
+++ b/include/modes/cmode_k.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +k
+ */
class ModeChannelKey : public ModeHandler
{
public:
diff --git a/include/modes/cmode_l.h b/include/modes/cmode_l.h
index dbedb610a..e987ffda4 100644
--- a/include/modes/cmode_l.h
+++ b/include/modes/cmode_l.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +l
+ */
class ModeChannelLimit : public ModeHandler
{
public:
diff --git a/include/modes/cmode_m.h b/include/modes/cmode_m.h
index 7f8380540..af5369f2f 100644
--- a/include/modes/cmode_m.h
+++ b/include/modes/cmode_m.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +m
+ */
class ModeChannelModerated : public ModeHandler
{
public:
diff --git a/include/modes/cmode_n.h b/include/modes/cmode_n.h
index 96559b81d..66130b987 100644
--- a/include/modes/cmode_n.h
+++ b/include/modes/cmode_n.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +n
+ */
class ModeChannelNoExternal : public ModeHandler
{
public:
diff --git a/include/modes/cmode_o.h b/include/modes/cmode_o.h
index 25b03a786..a308f9903 100644
--- a/include/modes/cmode_o.h
+++ b/include/modes/cmode_o.h
@@ -3,6 +3,8 @@
class InspIRCd;
+/** Channel mode +o
+ */
class ModeChannelOp : public ModeHandler
{
private:
diff --git a/include/modes/cmode_p.h b/include/modes/cmode_p.h
index 38a043da8..08c355a2c 100644
--- a/include/modes/cmode_p.h
+++ b/include/modes/cmode_p.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +p
+ */
class ModeChannelPrivate : public ModeHandler
{
public:
diff --git a/include/modes/cmode_s.h b/include/modes/cmode_s.h
index b72038f26..9c36c4ff3 100644
--- a/include/modes/cmode_s.h
+++ b/include/modes/cmode_s.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +s
+ */
class ModeChannelSecret : public ModeHandler
{
public:
diff --git a/include/modes/cmode_t.h b/include/modes/cmode_t.h
index 8c4a27a4d..631e337b3 100644
--- a/include/modes/cmode_t.h
+++ b/include/modes/cmode_t.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** Channel mode +t
+ */
class ModeChannelTopicOps : public ModeHandler
{
public:
diff --git a/include/modes/cmode_v.h b/include/modes/cmode_v.h
index a2d94938d..51846d11a 100644
--- a/include/modes/cmode_v.h
+++ b/include/modes/cmode_v.h
@@ -3,6 +3,8 @@
class InspIRCd;
+/** Channel mode +v
+ */
class ModeChannelVoice : public ModeHandler
{
private:
diff --git a/include/modes/umode_i.h b/include/modes/umode_i.h
index dad12473e..334222c51 100644
--- a/include/modes/umode_i.h
+++ b/include/modes/umode_i.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** User mode +i
+ */
class ModeUserInvisible : public ModeHandler
{
public:
diff --git a/include/modes/umode_n.h b/include/modes/umode_n.h
index bb4cb2717..7c26d0561 100644
--- a/include/modes/umode_n.h
+++ b/include/modes/umode_n.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** User mode +n
+ */
class ModeUserServerNoticeMask : public ModeHandler
{
public:
diff --git a/include/modes/umode_o.h b/include/modes/umode_o.h
index 736909fdf..dad4e897e 100644
--- a/include/modes/umode_o.h
+++ b/include/modes/umode_o.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** User mode +o
+ */
class ModeUserOperator : public ModeHandler
{
public:
diff --git a/include/modes/umode_s.h b/include/modes/umode_s.h
index f982d32b9..e1178f3b6 100644
--- a/include/modes/umode_s.h
+++ b/include/modes/umode_s.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** User mode +s
+ */
class ModeUserServerNotice : public ModeHandler
{
public:
diff --git a/include/modes/umode_w.h b/include/modes/umode_w.h
index ce3db0a52..8ab832a2f 100644
--- a/include/modes/umode_w.h
+++ b/include/modes/umode_w.h
@@ -2,6 +2,8 @@
class InspIRCd;
+/** User mode +w
+ */
class ModeUserWallops : public ModeHandler
{
public: