From a266dadd1351d10b56ec187c7b6f7af75350ed68 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 12 May 2005 02:26:05 +0000 Subject: Documented new recvq and sendq stuff git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1367 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/classFileReader.html | 82 ++++++++++++++++++------------------ 1 file changed, 41 insertions(+), 41 deletions(-) (limited to 'docs/module-doc/classFileReader.html') diff --git a/docs/module-doc/classFileReader.html b/docs/module-doc/classFileReader.html index 1319a66e2..1b1d55845 100644 --- a/docs/module-doc/classFileReader.html +++ b/docs/module-doc/classFileReader.html @@ -77,10 +77,10 @@ Default constructor.

This method does not load any file into memory, you must use the LoadFile method after constructing the class this way.

-Definition at line 1004 of file modules.cpp. +Definition at line 1022 of file modules.cpp.

-

01005 {
-01006 }
+
01023 {
+01024 }
 
@@ -114,15 +114,15 @@ Secondary constructor.

This method initialises the class with a file loaded into it ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0.

-Definition at line 997 of file modules.cpp. +Definition at line 1015 of file modules.cpp.

References fc, and file_cache.

-

00998 {
-00999         file_cache c;
-01000         readfile(c,filename.c_str());
-01001         this->fc = c;
-01002 }
+
01016 {
+01017         file_cache c;
+01018         readfile(c,filename.c_str());
+01019         this->fc = c;
+01020 }
 
@@ -155,10 +155,10 @@ Default destructor.

This deletes the memory allocated to the file.

-Definition at line 1016 of file modules.cpp. +Definition at line 1034 of file modules.cpp.

-

01017 {
-01018 }
+
01035 {
+01036 }
 
@@ -192,20 +192,20 @@ Returns true if the file exists This function will return false if the file coul

-Definition at line 1020 of file modules.cpp. +Definition at line 1038 of file modules.cpp.

References fc.

-

01021 {
-01022         if (fc.size() == 0)
-01023         {
-01024                 return(false);
-01025         }
-01026         else
-01027         {
-01028                 return(true);
-01029         }
-01030 }
+
01039 {
+01040         if (fc.size() == 0)
+01041         {
+01042                 return(false);
+01043         }
+01044         else
+01045         {
+01046                 return(true);
+01047         }
+01048 }
 
@@ -238,13 +238,13 @@ Returns the size of the file in lines.

This method returns the number of lines in the read file. If it is 0, no lines have been read into memory, either because the file is empty or it does not exist, or cannot be opened due to permission problems.

-Definition at line 1039 of file modules.cpp. +Definition at line 1057 of file modules.cpp.

References fc.

-

01040 {
-01041         return fc.size();
-01042 }
+
01058 {
+01059         return fc.size();
+01060 }
 
@@ -278,15 +278,15 @@ Retrieve one line from the file.

This method retrieves one line from the text file. If an empty non-NULL string is returned, the index was out of bounds, or the line had no data on it.

-Definition at line 1032 of file modules.cpp. +Definition at line 1050 of file modules.cpp.

References fc.

-

01033 {
-01034         if ((x<0) || (x>fc.size()))
-01035                 return "";
-01036         return fc[x];
-01037 }
+
01051 {
+01052         if ((x<0) || (x>fc.size()))
+01053                 return "";
+01054         return fc[x];
+01055 }
 
@@ -320,15 +320,15 @@ Used to load a file.

This method loads a file into the class ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0.

-Definition at line 1008 of file modules.cpp. +Definition at line 1026 of file modules.cpp.

References fc, and file_cache.

-

01009 {
-01010         file_cache c;
-01011         readfile(c,filename.c_str());
-01012         this->fc = c;
-01013 }
+
01027 {
+01028         file_cache c;
+01029         readfile(c,filename.c_str());
+01030         this->fc = c;
+01031 }
 
@@ -356,12 +356,12 @@ References fc, and Definition at line 1238 of file modules.h.

-Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile(). +Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().


The documentation for this class was generated from the following files: -
Generated on Sat May 7 15:34:25 2005 for InspIRCd by +
Generated on Thu May 12 02:25:21 2005 for InspIRCd by doxygen 1.3.3
-- cgit v1.2.3