mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
12 lines
167 B
C++
12 lines
167 B
C++
#include "lc_global.h"
|
|
#include "object.h"
|
|
#include "lc_file.h"
|
|
|
|
lcObject::lcObject(lcObjectType ObjectType)
|
|
: mObjectType(ObjectType)
|
|
{
|
|
}
|
|
|
|
lcObject::~lcObject()
|
|
{
|
|
}
|