]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/fproto.hh
release: 0.0.53
[lilypond.git] / flower / include / fproto.hh
1 /*
2   fproto.hh -- typenames in flowerlib
3
4   (c) 1996 Han-Wen Nienhuys
5 */
6
7 #ifndef FPROTO_HH
8 #define FPROTO_HH
9
10
11 char const * flower_version_sz();
12
13 // what the F*** is "int" ?
14 // depreciate int, long, etc., use i32, i64, remember: linux-16/linux-64 ?
15 /// (i32)
16 typedef int i32;
17 /// (i64)
18 typedef long long I64;
19
20 template<class T> struct Array;
21 template<class T> struct sstack;
22 template<class T,class K> struct Assoc;
23 template<class T> struct List;
24 template<class T> struct PointerList;
25 template<class T> struct IPointerList;
26 template<class T> struct Cursor;
27 template<class T> struct PCursor;
28 template<class T> struct Link;
29 template<class T> struct Handle;
30 template<class T> struct Interval_t;
31 template<class T> struct PQueue;
32
33 #include "real.hh"
34
35 typedef Interval_t<Real> Interval;
36
37 struct Choleski_decomposition;
38
39 struct Long_option_init;
40 struct Getopt_long;
41 struct Matrix;
42 struct String_data;
43 struct String_handle;
44 struct String_convert;
45 struct String;
46 struct Matrix_storage;
47 struct Vector ;
48 struct Text_stream;
49 struct Data_file;
50 struct Text_db;
51 struct Scalar;
52 typedef unsigned char Byte;
53 #endif // FPROTO_HH
54