]> Shamusworld >> Repos - architektonas/blobdiff - src/connection.h
Fixes for the Layer widget.
[architektonas] / src / connection.h
index 485c4c0550d9e6b5a4435aa067630fa718a3e199..89c2396de3cdc015d618fb7c739d8d11709cb197 100644 (file)
@@ -3,7 +3,6 @@
 
 //#include "object.h"
 
-//enum DimensionType { DTLinear, DTRadial, DTDiametric, DTCircumferential, DTLeader };
 class Object;
 
 class Connection
@@ -12,6 +11,9 @@ class Connection
                Connection(Object * o = 0, double param = 0);
                ~Connection();
 
+               bool operator==(Connection const c);            // Check for equality
+               bool operator!=(Connection const c);            // Check for inequality
+
        public:
                Object * object;
                double t;