mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-15 04:42:35 +00:00
18 lines
160 B
C++
18 lines
160 B
C++
#ifndef _PAGE_H_
|
|
#define _PAGE_H_
|
|
#include <stdlib.h>
|
|
|
|
class Page
|
|
{
|
|
public:
|
|
Page();
|
|
|
|
size_t start;
|
|
char* text;
|
|
size_t len;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|