Initial commit
This commit is contained in:
29
src/ui/profiledialog.h
Normal file
29
src/ui/profiledialog.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef PROFILEDIALOG_H
|
||||
#define PROFILEDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "../cameras.h"
|
||||
|
||||
namespace Ui {
|
||||
class ProfileDialog;
|
||||
}
|
||||
|
||||
class ProfileDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
Cameras* cameras_;
|
||||
|
||||
private slots:
|
||||
void addProfile();
|
||||
void editProfile();
|
||||
|
||||
public:
|
||||
explicit ProfileDialog(Cameras* cameras, QWidget *parent = nullptr);
|
||||
~ProfileDialog();
|
||||
|
||||
private:
|
||||
Ui::ProfileDialog *ui;
|
||||
};
|
||||
|
||||
#endif // PROFILEDIALOG_H
|
Reference in New Issue
Block a user