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