mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
11 lines
150 B
C++
11 lines
150 B
C++
#include "TextReader.h"
|
|
|
|
class TextStorage
|
|
{
|
|
public:
|
|
TextStorage();
|
|
|
|
TextReader* open(char* filename);
|
|
void close(TextReader* reader);
|
|
};
|