summaryrefslogtreecommitdiff
path: root/src/modules/m_watch.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-06 14:37:51 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-06 14:37:51 +0000
commit855f0d98e90a077f46b456e98ebb8a9b290488f6 (patch)
treea6e72a210b8dfdaa99312cd63ea8da976e21f561 /src/modules/m_watch.cpp
parent364735e18b500f0a071fab4cc5c9e7bace1835fc (diff)
Document more classes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5435 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r--src/modules/m_watch.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index ed56f7b8b..5ca114e0c 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -22,15 +22,13 @@ using namespace std;
#include "users.h"
#include "channels.h"
#include "modules.h"
-
#include "hashcomp.h"
#include "inspircd.h"
/* $ModDesc: Provides support for the /watch command */
-
-
-
+/** A watchlist entry
+ */
class watchentry : public classbase
{
public:
@@ -41,6 +39,8 @@ class watchentry : public classbase
typedef std::vector<watchentry*> watchlist;
watchlist watches;
+/** Handle /WATCH
+ */
class cmd_watch : public command_t
{
public: