]> Shamusworld >> Repos - architektonas/blob - src/connection.h
Fixed duplicate Connection issue.
[architektonas] / src / connection.h
1 #ifndef __CONNECTION_H__
2 #define __CONNECTION_H__
3
4 //#include "object.h"
5
6 //enum DimensionType { DTLinear, DTRadial, DTDiametric, DTCircumferential, DTLeader };
7 class Object;
8
9 class Connection
10 {
11         public:
12                 Connection(Object * o = 0, double param = 0);
13                 ~Connection();
14
15                 bool operator==(Connection const c);            // Check for equality
16                 bool operator!=(Connection const c);            // Check for inequality
17
18         public:
19                 Object * object;
20                 double t;
21 };
22
23 #endif  // __CONNECTION_H__