mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
13 lines
224 B
C++
13 lines
224 B
C++
#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);
|
|
};
|