X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fconnection.h;h=89c2396de3cdc015d618fb7c739d8d11709cb197;hb=0fcc2d879e1e0ca17eeaceae2159f5143a06586f;hp=485c4c0550d9e6b5a4435aa067630fa718a3e199;hpb=676007c81e292079daaa7188f4fbf2757ae77ef8;p=architektonas diff --git a/src/connection.h b/src/connection.h index 485c4c0..89c2396 100644 --- a/src/connection.h +++ b/src/connection.h @@ -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;