]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/base.cpp
Added documentation to manpages of Request, Event and ModuleMessage
[user/henk/code/inspircd.git] / src / base.cpp
index 7e545694bc9f5aa988ef94060f051dc52e905fef..72741eb90d4d10fd715e6d5994d76b6449101745 100644 (file)
@@ -1,15 +1,36 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *                       E-mail:
+ *                <brain@chatspike.net>
+ *               <Craig@chatspike.net>
+ *     
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
 #include "base.h"
 #include "inspircd_config.h" 
 #include <time.h>
 #include <map>
 #include <string>
+#include "inspircd.h"
+#include "modules.h"
+
+extern time_t TIME;
 
-bool Extensible::Extend(std::string key, VoidPointer p)
+bool Extensible::Extend(std::string key, char* p)
 {
        // only add an item if it doesnt already exist
        if (this->Extension_Items.find(key) == this->Extension_Items.end())
        {
-               this->Extension_Items[key] == p;
+               this->Extension_Items[key] = p;
+               log(DEBUG,"Extending object with item %s",key.c_str());
                return true;
        }
        // item already exists, return false
@@ -22,17 +43,20 @@ bool Extensible::Shrink(std::string key)
        if (this->Extension_Items.find(key) != this->Extension_Items.end())
        {
                this->Extension_Items.erase(this->Extension_Items.find(key));
+               log(DEBUG,"Shrinking object with item %s",key.c_str());
                return true;
        }
        return false;
 }
 
-VoidPointer Extensible::GetExt(std::string key)
+char* Extensible::GetExt(std::string key)
 {
+       log(DEBUG,"Checking extension items for %s",key.c_str());
        if (this->Extension_Items.find(key) != this->Extension_Items.end())
        {
                return (this->Extension_Items.find(key))->second;
        }
+       log(DEBUG,"Cant find item %s",key.c_str());
        return NULL;
 }