]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/base.h
Fix for permissions :p
[user/henk/code/inspircd.git] / include / base.h
index ac03a748c56d59927ad237969f48a1936f3bbc8e..d3cc77e058d6c81d24b1de12251a9ae1184fb179 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
 #ifndef __BASE_H__ 
 #define __BASE_H__ 
 
-#include "inspircd_config.h" 
+#include "inspircd_config.h"
 #include <time.h>
 #include <map>
 #include <deque>
 #include <string>
 
 typedef void* VoidPointer;
+typedef std::map<std::string,char*> ExtensibleStore;
  
 /** The base class for all inspircd classes
 */ 
@@ -52,7 +53,7 @@ class Extensible : public classbase
 {
        /** Private data store
         */
-       std::map<std::string,char*> Extension_Items;
+       ExtensibleStore Extension_Items;
        
 public:
 
@@ -67,7 +68,14 @@ public:
         *
         * @return Returns true on success, false if otherwise
         */
-       bool Extend(std::string key, char* p);
+       template<typename T> bool Extend(const std::string &key, T* p)
+       {
+               /* This will only add an item if it doesnt already exist,
+                * the return value is a std::pair of an iterator to the
+                * element, and a bool saying if it was actually inserted.
+                */
+               return this->Extension_Items.insert(std::make_pair(key, (char*)p)).second;
+       }
 
        /** Shrink an Extensible class.
         *
@@ -78,7 +86,7 @@ public:
         *
         * @return Returns true on success.
         */
-       bool Shrink(std::string key);
+       bool Shrink(const std::string &key);
        
        /** Get an extension item.
         *
@@ -86,7 +94,7 @@ public:
         *
         * @return If you provide a non-existent key name, the function returns NULL, otherwise a pointer to the item referenced by the key is returned.
         */
-       char* GetExt(std::string key);
+       char* GetExt(const std::string &key);
 
        /** Get a list of all extension items names.
         *
@@ -160,4 +168,3 @@ class BoolSet
 
 
 #endif
-