]> Shamusworld >> Repos - architektonas/blob - src/connection.h
485c4c0550d9e6b5a4435aa067630fa718a3e199
[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         public:
16                 Object * object;
17                 double t;
18 };
19
20 #endif  // __CONNECTION_H__