You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
323 B
C++
18 lines
323 B
C++
#ifndef QTPMAINWINDOW_H
|
|
#define QTPMAINWINDOW_H
|
|
|
|
#include <QtWidgets\qmainwindow.h>
|
|
#include <QtWidgets\qdockwidget.h>
|
|
//#include "QTadpoleCallback.h"
|
|
|
|
class QTpMainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QTpMainWindow(QWidget *parent = NULL);
|
|
virtual ~QTpMainWindow();
|
|
|
|
};
|
|
|
|
#endif // QTPMAINWINDOW_H
|