/**
@class wxTextFile
- @wxheader{textfile.h}
The wxTextFile is a simple class which allows to work with text files on line by
line basis. It also understands the differences in line termination characters
/**
Constructor does not load the file into memory, use Open() to do it.
*/
- wxTextFile(const wxString& strFile) const;
+ wxTextFile(const wxString& strFile);
/**
Destructor does nothing.
*/
- ~wxTextFile() const;
+ virtual ~wxTextFile();
/**
Adds a line to the end of file.