~ubuntu-branches/ubuntu/wily/qgis/wily

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef ENGINECONFIGDIALOG_H
#define ENGINECONFIGDIALOG_H

#include <QDialog>

#include "ui_engineconfigdialog.h"

class PalLabeling;

class EngineConfigDialog : public QDialog, private Ui::EngineConfigDialog
{
    Q_OBJECT
  public:
    EngineConfigDialog( PalLabeling* lbl, QWidget* parent = NULL );

  public slots:
    void onOK();

  protected:
    PalLabeling* mLBL;
};

#endif // ENGINECONFIGDIALOG_H