]> Creatis software - bbtk.git/blob - kernel/src/bbtkQtBlackBoxDialogParent.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkQtBlackBoxDialogParent.h
1 #include <QDialog>
2
3 namespace bbtk
4 {
5   class QtBlackBoxDialogParent : public WidgetBlackBoxWindow<QWidget>, 
6                                  public QDialog
7   {
8   public:
9     QtBlackBoxDialogParent(QtBlackBox::Pointer box,
10                      QWidget *parent)
11       :
12       WidgetBlackBoxWindow<QWidget>(box),
13       QDialog( parent )
14     {
15       
16     }
17
18   };
19
20 }