]> Shamusworld >> Repos - architektonas/blobdiff - src/object.cpp
Fix for missing ampersand in QApplication.
[architektonas] / src / object.cpp
index b5bab70d954f7c2f80e93cc29de2d3f790484c72..ab95c0ea16fb5a35cf56af5074671b17cf8377b2 100644 (file)
@@ -82,6 +82,12 @@ Object::~Object()
 {
 }
 
+// This returns a pointer to the point passed in, if it coincides. Otherwise returns NULL.
+/*virtual*/ Vector * Object::GetPointAt(Vector)
+{
+       return 0;
+}
+
 ObjectState Object::GetState(void)
 {
        return state;
@@ -92,6 +98,11 @@ void Object::Reparent(Object * newParent)
        parent = newParent;
 }
 
+Dimension * Object::GetAttachedDimension(void)
+{
+       return attachedDimension;
+}
+
 // Class methods...
 
 void Object::SetFixedAngle(bool state/*= true*/)