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

View File

@ -0,0 +1,16 @@
#include "editprofiledialog.h"
#include "ui_editprofiledialog.h"
EditProfileDialog::EditProfileDialog(Cameras* cameras, Profile* profile, QWidget *parent) :
QDialog(parent),
profile_(profile),
cameras_(cameras),
ui(new Ui::EditProfileDialog)
{
ui->setupUi(this);
}
EditProfileDialog::~EditProfileDialog()
{
delete ui;
}