]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/fproto.hh
release: 0.1.41
[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 // deprecate 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 Dictionary;
24 template<class T> struct Dictionary_iter;
25 template<class T> struct List;
26 template<class T> struct Link_list;
27 template<class T> struct Pointer_list;
28 template<class T> struct Cursor;
29 template<class T> struct PCursor;
30 template<class T> struct Link;
31 template<class T> struct Handle;
32 template<class T> struct Interval_t;
33 template<class T> struct PQueue;
34
35 #include "real.hh"
36
37 typedef Interval_t<Real> Interval;
38
39 struct Choleski_decomposition;
40
41 struct Long_option_init;
42 struct File_path;
43 struct Directed_graph_node;
44 struct Getopt_long;
45 struct Matrix;
46 struct String_data;
47 struct FlowerString;
48 struct String_handle;
49 struct String_convert;
50 struct String;
51 struct Matrix_storage;
52 struct Vector ;
53 struct Rational;
54 struct Text_stream;
55 struct Data_file;
56 struct Text_db;
57 struct Scalar;
58 typedef unsigned char Byte;
59
60
61 #endif // FPROTO_HH
62