Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / ardour / movable.h
1 #ifndef __libardour_movable_h__
2 #define __libardour_movable_h__
3
4 namespace ARDOUR {
5
6 class Movable {
7   public:
8         Movable() {}
9
10         bool locked () const { return false; }
11 };
12
13 }
14
15 #endif /* __libardour_movable_h__ */