--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ldtypes.cpp Fri Mar 15 20:11:18 2013 +0200 @@ -0,0 +1,62 @@ +#include "common.h" +#include "ldtypes.h" + +const char* g_saObjTypeNames[] = { + "unidentified", + "unknown", + "empty", + "comment", + "subfile", + "line", + "triangle", + "quadrilateral", + "condline", + "vector", + "vertex", +}; + +// ============================================================================= +// LDObject constructors +LDObject::LDObject () { + +} + +LDGibberish::LDGibberish () { + +} + +LDEmpty::LDEmpty () { + +} + +LDComment::LDComment () { + +} + +LDSubfile::LDSubfile () { + +} + +LDLine::LDLine () { + +} + +LDTriangle::LDTriangle () { + +} + +LDQuad::LDQuad () { + +} + +LDCondLine::LDCondLine () { + +} + +LDVector::LDVector () { + +} + +LDVertex::LDVertex () { + +} \ No newline at end of file