diff options
author | pippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-06-11 11:35:23 +0000 |
---|---|---|
committer | pippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-06-11 11:35:23 +0000 |
commit | d185decae97752368d5cf62311cbc0d1a52aa22c (patch) | |
tree | 754e7076778fabfbaacaef96da0f845110a8adef /src/modules/m_foobar.cpp | |
parent | 62ac378bfb9591f5c5e10076c8be73adaabcfc64 (diff) |
fixed some indentation and spacing in modules
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9888 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_foobar.cpp')
-rw-r--r-- | src/modules/m_foobar.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/modules/m_foobar.cpp b/src/modules/m_foobar.cpp index 667a739a5..7a8ac8e32 100644 --- a/src/modules/m_foobar.cpp +++ b/src/modules/m_foobar.cpp @@ -21,41 +21,41 @@ class ModuleFoobar : public Module { private: - + // It is recommended that your class makes use of one or more Server // objects. A server object is a class which contains methods which // encapsulate the exports from the core of the ircd. // such methods include Debug, SendChannel, etc. - - + + public: ModuleFoobar(InspIRCd* Me) : Module(Me) { // The constructor just makes a copy of the server class - - + + Implementation eventlist[] = { I_OnUserConnect, I_OnUserQuit, I_OnUserJoin, I_OnUserPart, I_OnUserPreJoin }; ServerInstance->Modules->Attach(eventlist, this, 5); } - + virtual ~ModuleFoobar() { } - + virtual Version GetVersion() { // this method instantiates a class of type Version, and returns // the modules version information using it. - + return Version(1,2,0,1,VF_VENDOR,API_VERSION); } - + virtual void OnUserConnect(User* user) { // method called when a user connects - + std::string b = user->nick; ServerInstance->Logs->Log("m_foobar",DEBUG,"Foobar: User connecting: "+b); } @@ -63,11 +63,11 @@ class ModuleFoobar : public Module virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message) { // method called when a user disconnects - + std::string b = user->nick; ServerInstance->Logs->Log("m_foobar",DEBUG,"Foobar: User quitting: "+b); } - + virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent) { // method called when a user joins a channel @@ -80,7 +80,7 @@ class ModuleFoobar : public Module virtual void OnUserPart(User* user, Channel* channel, const std::string &partreason, bool &silent) { // method called when a user parts a channel - + std::string c = channel->name; std::string b = user->nick; ServerInstance->Logs->Log("m_foobar",DEBUG,"Foobar: User "+b+" parted "+c); |