]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/flower-proto.hh
Merge master into nested-bookparts
[lilypond.git] / flower / include / flower-proto.hh
1 /*
2   flower-proto.hh -- typenames in flowerlib
3
4   (c) 1996--2007 Han-Wen Nienhuys
5 */
6
7 #ifndef FLOWER_PROTO_HH
8 #define FLOWER_PROTO_HH
9
10 char const *flower_version_str0 ();
11
12 typedef unsigned char Byte;
13 typedef long long I64;
14 struct String_convert;
15
16 #include "std-string.hh"
17 using namespace std;
18
19 #include "real.hh"
20
21 template<class T> struct Interval_t;
22 template<class T> struct PQueue;
23 template<class T, class A> class Matrix;
24
25 typedef Interval_t<Real> Interval;
26
27 struct Offset;
28 struct Long_option_init;
29 struct Rational;
30 class File_name;
31 class File_path;
32 struct Getopt_long;
33
34 typedef unsigned char U8;
35 typedef short I16;
36 typedef unsigned short U16;
37 typedef unsigned U32;
38 typedef int I32;
39 typedef unsigned long long U64;
40
41 /* We should really use LLONG_MAX; unfortunately, this appears not to
42    be defined for the gub x-compiler.
43 */
44 const U64 U64_MAX = (~0ULL);
45
46 struct File_storage;
47 struct Mapped_file_storage;
48 struct Simple_file_storage;
49
50 #endif /* FLOWER_PROTO_HH */