mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
15 lines
281 B
C++
15 lines
281 B
C++
|
#include "printoptions.h"
|
||
|
#include "ui_printoptions.h"
|
||
|
|
||
|
PrintOptions *PrintOptions::instance()
|
||
|
{
|
||
|
static PrintOptions *self = new PrintOptions();
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
PrintOptions::PrintOptions(QWidget *parent, Qt::WindowFlags f)
|
||
|
: ui( new Ui::PrintOptions())
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|