1
0
mirror of https://github.com/Dejvino/lilybook.git synced 2024-09-28 01:43:37 +00:00
lilybook/main/Page.h
2020-01-31 20:54:19 +01:00

17 lines
142 B
C++

#ifndef _PAGE_H_
#define _PAGE_H_
#include <stdlib.h>
class Page
{
public:
Page();
char* text;
size_t len;
private:
};
#endif