7
class CRawMod : public CModule {
9
MODCONSTRUCTOR(CRawMod) {}
12
virtual string GetDescription() {
13
return "View all of the raw traffic.";
16
virtual bool OnRaw(string& sLine) {
17
PutModule("IRC -> [" + sLine + "]");
21
virtual bool OnUserRaw(string& sLine) {
22
PutModule("YOU -> [" + sLine + "]");