mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
17 lines
142 B
C++
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
|