Merging from trunk
[ardour.git] / libs / cassowary / cassowary / ClLinearExpression_fwd.h
1 // $Id$
2 //
3 // Cassowary Incremental Constraint Solver
4 // Original Smalltalk Implementation by Alan Borning
5 // This C++ Implementation by Greg J. Badros, <gjb@cs.washington.edu>
6 // http://www.cs.washington.edu/homes/gjb
7 // (C) 1998, 1999 Greg J. Badros and Alan Borning
8 // See ../LICENSE for legal details regarding this software
9 //
10 // ClLinearExpression.h
11
12 #ifndef ClLinearExpression_fwd_H
13 #define ClLinearExpression_fwd_H
14
15 #if defined(HAVE_CONFIG_H) && !defined(CONFIG_H_INCLUDED) && !defined(CONFIG_INLINE_H_INCLUDED)
16 #include <cassowary/config-inline.h>
17 #define CONFIG_INLINE_H_INCLUDED
18 #endif
19
20 #include "Cassowary.h"
21
22 template <class T> class ClGenericLinearExpression;
23 typedef ClGenericLinearExpression<Number> ClLinearExpression;
24 typedef ClLinearExpression* PClLinearExpression;
25
26 #endif