ESGRAF48/source/PrintableModel.h

13 lines
190 B
C
Raw Normal View History

2018-12-15 15:12:20 +00:00
#pragma once
#include <QTextTableFormat>
class PrintableModel
{
public:
virtual void printTo(QTextCursor &cursor) const = 0;
protected:
static QTextTableFormat defaultTableFormat();
};