mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
12 lines
108 B
C
12 lines
108 B
C
|
#include "Page.h"
|
||
|
|
||
|
class PagePrinter
|
||
|
{
|
||
|
public:
|
||
|
PagePrinter();
|
||
|
|
||
|
void print(Page* page);
|
||
|
|
||
|
private:
|
||
|
};
|