mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
11 lines
146 B
C++
11 lines
146 B
C++
#include "lc_global.h"
|
|
#include "object.h"
|
|
|
|
lcObject::lcObject(lcObjectType ObjectType)
|
|
: mObjectType(ObjectType)
|
|
{
|
|
}
|
|
|
|
lcObject::~lcObject()
|
|
{
|
|
}
|