diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 18:22:16 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 18:22:16 +0000 |
commit | 3dacf1edd2e1e623b07819bb483ae61eff3854cd (patch) | |
tree | 30cf80a7c57f2c3fe0c630bdfb51785ac5d1b3b7 /include/base.h | |
parent | b9fbf3621c2a3ee18dd9c575d086fc16905f4793 (diff) |
Made a load more stuff Extensible which might be of use to someone
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4293 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/base.h b/include/base.h index 01b0e9ae1..b808af398 100644 --- a/include/base.h +++ b/include/base.h @@ -83,7 +83,6 @@ public: * * You must provide a key name. The given key name will be removed from the classes data. If * you provide a nonexistent key (case is important) then the function will return false. - * * @return Returns true on success. */ bool Shrink(const std::string &key); @@ -91,7 +90,6 @@ public: /** Get an extension item. * * @param key The key parameter is an arbitary string which identifies the extension data - * * @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. */ template<typename T> bool GetExt(const std::string &key, T* &p) @@ -108,12 +106,9 @@ public: return false; } } - //char* GetExt(const std::string &key); /** Get a list of all extension items names. - * * @param list A deque of strings to receive the list - * * @return This function writes a list of all extension items stored in this object by name into the given deque and returns void. */ void GetExtList(std::deque<std::string> &list); |