no message
This commit is contained in:
@@ -14,11 +14,14 @@ public:
|
||||
fprintf(ptr, "%s\n", text.getCharArray());
|
||||
}
|
||||
~File() {
|
||||
if (ptr != NULL) {
|
||||
fclose(ptr);
|
||||
ptr = NULL;
|
||||
}
|
||||
}
|
||||
Close();
|
||||
}
|
||||
void Close(){
|
||||
if (ptr != NULL) {
|
||||
fclose(ptr);
|
||||
ptr = NULL;
|
||||
}
|
||||
}
|
||||
Text* readLines(){
|
||||
Text* lines = new Text();
|
||||
int c;
|
||||
|
||||
Reference in New Issue
Block a user