webCAMotion/CPP/GUI/notimplemented.h

26 lines
352 B
C
Raw Permalink Normal View History

2016-01-25 01:15:35 +00:00
#ifndef NOTIMPLEMENTED_H
#define NOTIMPLEMENTED_H
#include <QDialog>
namespace Ui {
class NotImplemented;
}
class NotImplemented : public QDialog
{
Q_OBJECT
public:
explicit NotImplemented(QWidget *parent = 0);
~NotImplemented();
public slots:
void justClose();
private:
Ui::NotImplemented *ui;
};
#endif // NOTIMPLEMENTED_H