mirror of
https://github.com/Dejvino/lilybook.git
synced 2025-12-30 13:39:35 +00:00
14 lines
159 B
C++
14 lines
159 B
C++
#include <stdlib.h>
|
|
#include "Page.h"
|
|
|
|
class Typesetter
|
|
{
|
|
public:
|
|
Typesetter();
|
|
|
|
void preparePage(Page* page, char* text, size_t len);
|
|
|
|
//private:
|
|
|
|
};
|