Initial commit
This commit is contained in:
16
src/ui/editprofiledialog.cpp
Normal file
16
src/ui/editprofiledialog.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user