1
0
mirror of https://github.com/Dejvino/lilybook.git synced 2024-09-28 09:53:37 +00:00
lilybook/main/Typesetter.h

13 lines
224 B
C
Raw Normal View History

2020-01-31 19:54:19 +00:00
#include <stdlib.h>
#include "Page.h"
class Typesetter
{
public:
Typesetter();
Page* preparePage(char* text, size_t len);
Page* preparePreviousPage(char* text, size_t len);
void destroyPage(Page* page);
2020-01-31 19:54:19 +00:00
};