~vcs-imports-ii/znc/master

« back to all changes in this revision

Viewing changes to modules/raw.cpp

  • Committer: prozacx
  • Date: 2004-08-24 00:08:51 UTC
  • Revision ID: git-v1:538d3ece4e737807e7d5a11849aab177b87c1571
Initial revision


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2 726aef4b-f618-498e-8847-2d620e286838

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "main.h"
 
2
#include "User.h"
 
3
#include "Nick.h"
 
4
#include "Modules.h"
 
5
#include "Chan.h"
 
6
 
 
7
class CRawMod : public CModule {
 
8
public:
 
9
        MODCONSTRUCTOR(CRawMod) {}
 
10
        virtual ~CRawMod() {}
 
11
 
 
12
        virtual string GetDescription() {
 
13
                return "View all of the raw traffic.";
 
14
        }
 
15
 
 
16
        virtual bool OnRaw(string& sLine) {
 
17
                PutModule("IRC -> [" + sLine + "]");
 
18
                return false;
 
19
        }
 
20
 
 
21
        virtual bool OnUserRaw(string& sLine) {
 
22
                PutModule("YOU -> [" + sLine + "]");
 
23
                return false;
 
24
        }
 
25
};
 
26
 
 
27
MODULEDEFS(CRawMod)
 
28