Initial commit
This commit is contained in:
commit
5efbdcbd6a
32 changed files with 1914 additions and 0 deletions
28
src/ui/editprofiledialog.h
Normal file
28
src/ui/editprofiledialog.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#ifndef EDDITPROFILEDIALOG_H
|
||||
#define EDDITPROFILEDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <profile.h>
|
||||
#include "../cameras.h"
|
||||
|
||||
namespace Ui {
|
||||
class EditProfileDialog;
|
||||
}
|
||||
|
||||
class EditProfileDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Profile* profile_;
|
||||
Cameras* cameras_;
|
||||
|
||||
|
||||
public:
|
||||
explicit EditProfileDialog(Cameras* cameras, Profile* profile, QWidget *parent = nullptr);
|
||||
Profile* getProfile(){return profile_;}
|
||||
~EditProfileDialog();
|
||||
|
||||
private:
|
||||
Ui::EditProfileDialog *ui;
|
||||
};
|
||||
|
||||
#endif // EDDITPROFILEDIALOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue