From 71e6de4b88c3d51bfa59fed44049a4d1ea6d26a1 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 29 Apr 2004 15:23:02 +0000 Subject: Documentation update for class 'Extensible' git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@749 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/base_8h-source.html | 51 +++++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 22 deletions(-) (limited to 'docs/module-doc/base_8h-source.html') diff --git a/docs/module-doc/base_8h-source.html b/docs/module-doc/base_8h-source.html index 62b1f60c9..2bcbe3682 100644 --- a/docs/module-doc/base_8h-source.html +++ b/docs/module-doc/base_8h-source.html @@ -7,29 +7,36 @@
Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

base.h

Go to the documentation of this file.
00001 /*
-00002 
-00003 
-00004 */
-00005 
-00006 #include "inspircd_config.h" 
-00007 #include <time.h>
-00008  
-00009 #ifndef __BASE_H__ 
-00010 #define __BASE_H__ 
-00011 
+00002 Defines the base classes used by InspIRCd
+00003 */
+00004 
+00005 #ifndef __BASE_H__ 
+00006 #define __BASE_H__ 
+00007 
+00008 #include "inspircd_config.h" 
+00009 #include <time.h>
+00010 #include <map>
+00011 #include <string>
 00012 
-00015 class classbase
-00016 {
-00017  public:
-00020         time_t age;
-00021 
-00025         classbase() { age = time(NULL); }
-00026         ~classbase() { }
-00027 };
-00028 
-00029 #endif
-00030 
-

Generated on Sun Apr 25 00:24:05 2004 for InspIRCd by +00013 typedef void* VoidPointer; +00014 +00017 class classbase +00018 { +00019 public: +00022 time_t age; +00023 +00027 classbase() { age = time(NULL); } +00028 ~classbase() { } +00029 }; +00030 +00038 class Extensible : public classbase +00039 { +00042 std::map<std::string,VoidPointer> Extension_Items; +00043 }; +00044 +00045 #endif +00046 +
Generated on Thu Apr 29 16:21:46 2004 for InspIRCd by doxygen1.3-rc3
-- cgit v1.2.3