Initial commit

This commit is contained in:
2021-06-10 12:09:44 +02:00
commit 5efbdcbd6a
32 changed files with 1914 additions and 0 deletions

29
src/ui/profiledialog.h Normal file
View 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