Add boilerplate code.

This commit is contained in:
2025-03-17 10:53:26 +01:00
parent 8856ecba0b
commit fd03f5561f
5 changed files with 63 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef FILEREADER_H
#define FILEREADER_H
class FileReader {
public:
FileReader();
~FileReader();
char *Read();
};
#endif