mirror of
https://github.com/leozide/leocad.git
synced 2026-09-12 09:35:24 +00:00
13 lines
167 B
C++
13 lines
167 B
C++
#include "lc_global.h"
|
|
#include "object.h"
|
|
#include "lc_file.h"
|
|
|
|
lcObject::lcObject(lcObjectType ObjectType)
|
|
: mObjectType(ObjectType)
|
|
{
|
|
}
|
|
|
|
lcObject::~lcObject()
|
|
{
|
|
}
|