webCAMotion/CPP/GUI/selectsomething.h

26 lines
360 B
C
Raw Normal View History

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