Add apparatus - mainframe for all the things
This commit is contained in:
parent
6d4383273b
commit
19f223b474
3 changed files with 19 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ SOURCES += \
|
||||||
entities/vessel_entity.cpp \
|
entities/vessel_entity.cpp \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
storageeditdialog.cpp \
|
storageeditdialog.cpp \
|
||||||
|
system/apparatus.cpp \
|
||||||
usereditdialog.cpp \
|
usereditdialog.cpp \
|
||||||
vesseleditdialog.cpp
|
vesseleditdialog.cpp
|
||||||
|
|
||||||
|
|
@ -34,6 +35,7 @@ HEADERS += \
|
||||||
entities/user_entity.h \
|
entities/user_entity.h \
|
||||||
entities/vessel_entity.h \
|
entities/vessel_entity.h \
|
||||||
storageeditdialog.h \
|
storageeditdialog.h \
|
||||||
|
system/apparatus.h \
|
||||||
usereditdialog.h \
|
usereditdialog.h \
|
||||||
vesseleditdialog.h
|
vesseleditdialog.h
|
||||||
|
|
||||||
|
|
|
||||||
6
system/apparatus.cpp
Normal file
6
system/apparatus.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include "apparatus.h"
|
||||||
|
|
||||||
|
apparatus::apparatus()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
11
system/apparatus.h
Normal file
11
system/apparatus.h
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef APPARATUS_H
|
||||||
|
#define APPARATUS_H
|
||||||
|
|
||||||
|
|
||||||
|
class apparatus
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
apparatus();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // APPARATUS_H
|
||||||
Loading…
Add table
Add a link
Reference in a new issue