lots of changes

This commit is contained in:
yenatch
2017-11-27 23:46:27 -05:00
parent 2246ead5a8
commit 11212dc640
30 changed files with 2575 additions and 895 deletions

14
objectpropertiesframe.cpp Executable file
View File

@@ -0,0 +1,14 @@
#include "objectpropertiesframe.h"
#include "ui_objectpropertiesframe.h"
ObjectPropertiesFrame::ObjectPropertiesFrame(QWidget *parent) :
QFrame(parent),
ui(new Ui::ObjectPropertiesFrame)
{
ui->setupUi(this);
}
ObjectPropertiesFrame::~ObjectPropertiesFrame()
{
delete ui;
}