This method does not load any file into memory, you must use the LoadFile method after constructing the class this way.
00892 {
-00893 }
+Definition at line 890 of file modules.cpp.
@@ -118,13 +118,13 @@ 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 884 of file modules.cpp.
+Definition at line 883 of file modules.cpp.
-References fc, and readfile().
00885 {
-00886 file_cache c;
-00887 readfile(c,filename.c_str());
-00888 this->fc = c;
-00889 }
+References fc, and readfile().
@@ -158,8 +158,8 @@ Default destructor.
This deletes the memory allocated to the file.
-Definition at line 903 of file modules.cpp.
00904 {
-00905 }
+Definition at line 902 of file modules.cpp.
@@ -194,18 +194,18 @@ Returns true if the file exists This function will return false if the file coul
-Definition at line 907 of file modules.cpp.
-
-References fc.
00908 {
-00909 if (fc.size() == 0)
-00910 {
-00911 return(false);
-00912 }
-00913 else
-00914 {
-00915 return(true);
-00916 }
-00917 }
+Definition at line 906 of file modules.cpp.
+
+References fc.
00907 {
+00908 if (fc.size() == 0)
+00909 {
+00910 return(false);
+00911 }
+00912 else
+00913 {
+00914 return(true);
+00915 }
+00916 }
@@ -239,11 +239,11 @@ 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 926 of file modules.cpp.
+Definition at line 925 of file modules.cpp.
-References fc.
00927 {
-00928 return fc.size();
-00929 }
+References fc.00926 {
+00927 return fc.size();
+00928 }
@@ -278,13 +278,13 @@ 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 919 of file modules.cpp.
+Definition at line 918 of file modules.cpp.
-References fc.
00920 {
-00921 if ((x<0) || ((unsigned)x>fc.size()))
-00922 return "";
-00923 return fc[x];
-00924 }
+References fc.00919 {
+00920 if ((x<0) || ((unsigned)x>fc.size()))
+00921 return "";
+00922 return fc[x];
+00923 }
@@ -319,13 +319,13 @@ 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 895 of file modules.cpp.
+Definition at line 894 of file modules.cpp.
-References fc, and readfile().
00896 {
-00897 file_cache c;
-00898 readfile(c,filename.c_str());
-00899 this->fc = c;
-00900 }
+References fc, and readfile().
@@ -354,14 +354,14 @@ References fc, and
-Definition at line 1623 of file modules.h.
+Definition at line 1641 of file modules.h.
-Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().
+Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().