summaryrefslogtreecommitdiff
path: root/docs/man/man3/FileReader.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/man3/FileReader.3')
-rw-r--r--docs/man/man3/FileReader.382
1 files changed, 41 insertions, 41 deletions
diff --git a/docs/man/man3/FileReader.3 b/docs/man/man3/FileReader.3
index bcc5f2c28..1fd538c20 100644
--- a/docs/man/man3/FileReader.3
+++ b/docs/man/man3/FileReader.3
@@ -57,100 +57,100 @@ Caches a text file into memory and can be used to retrieve lines from it.
This class contains methods for read-only manipulation of a text file in memory. Either use the constructor type with one parameter to load a file into memory at construction, or use the LoadFile method to load a file.
.PP
-Definition at line 869 of file modules.h.
+Definition at line 879 of file modules.h.
.SH "Constructor & Destructor Documentation"
.PP
.SS "FileReader::FileReader ()"
.PP
-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 827 of file modules.cpp.
+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 828 of file modules.cpp.
.PP
.nf
-828 {
-829 }
+829 {
+830 }
.fi
.SS "FileReader::FileReader (std::string filename)"
.PP
-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, \fBFileReader::FileSize\fP returns 0.Definition at line 820 of file modules.cpp.
+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, \fBFileReader::FileSize\fP returns 0.Definition at line 821 of file modules.cpp.
.PP
References fc, and file_cache.
.PP
.nf
-821 {
-822 file_cache c;
-823 readfile(c,filename.c_str());
-824 this->fc = c;
-825 }
+822 {
+823 file_cache c;
+824 readfile(c,filename.c_str());
+825 this->fc = c;
+826 }
.fi
.SS "FileReader::~\fBFileReader\fP ()"
.PP
-Default destructor. This deletes the memory allocated to the file.Definition at line 839 of file modules.cpp.
+Default destructor. This deletes the memory allocated to the file.Definition at line 840 of file modules.cpp.
.PP
.nf
-840 {
-841 }
+841 {
+842 }
.fi
.SH "Member Function Documentation"
.PP
.SS "bool FileReader::Exists ()"
.PP
-Returns true if the file exists This function will return false if the file could not be opened. Definition at line 843 of file modules.cpp.
+Returns true if the file exists This function will return false if the file could not be opened. Definition at line 844 of file modules.cpp.
.PP
References fc.
.PP
.nf
-844 {
-845 if (fc.size() == 0)
-846 {
-847 return(false);
-848 }
-849 else
-850 {
-851 return(true);
-852 }
-853 }
+845 {
+846 if (fc.size() == 0)
+847 {
+848 return(false);
+849 }
+850 else
+851 {
+852 return(true);
+853 }
+854 }
.fi
.SS "int FileReader::FileSize ()"
.PP
-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 862 of file modules.cpp.
+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 863 of file modules.cpp.
.PP
References fc.
.PP
.nf
-863 {
-864 return fc.size();
-865 }
+864 {
+865 return fc.size();
+866 }
.fi
.SS "std::string FileReader::GetLine (int x)"
.PP
-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 855 of file modules.cpp.
+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 856 of file modules.cpp.
.PP
References fc.
.PP
.nf
-856 {
-857 if ((x<0) || (x>fc.size()))
-858 return '';
-859 return fc[x];
-860 }
+857 {
+858 if ((x<0) || (x>fc.size()))
+859 return '';
+860 return fc[x];
+861 }
.fi
.SS "void FileReader::LoadFile (std::string filename)"
.PP
-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, \fBFileReader::FileSize\fP returns 0.Definition at line 831 of file modules.cpp.
+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, \fBFileReader::FileSize\fP returns 0.Definition at line 832 of file modules.cpp.
.PP
References fc, and file_cache.
.PP
.nf
-832 {
-833 file_cache c;
-834 readfile(c,filename.c_str());
-835 this->fc = c;
-836 }
+833 {
+834 file_cache c;
+835 readfile(c,filename.c_str());
+836 this->fc = c;
+837 }
.fi
.SH "Member Data Documentation"
.PP
.SS "\fBfile_cache\fP \fBFileReader::fc\fP\fC [private]\fP"
.PP
-Definition at line 871 of file modules.h.
+Definition at line 881 of file modules.h.
.PP
Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().