mirror of
https://github.com/leozide/leocad.git
synced 2026-09-15 02:53:39 +00:00
12 lines
146 B
C++
12 lines
146 B
C++
#include "lc_global.h"
|
|
#include "object.h"
|
|
|
|
lcObject::lcObject(lcObjectType ObjectType)
|
|
: mObjectType(ObjectType)
|
|
{
|
|
}
|
|
|
|
lcObject::~lcObject()
|
|
{
|
|
}
|