Doc: CG intro -- mention lily-git.
[lilypond/mpolesky.git] / flower / include / flower-proto.hh
blobb13b7cf00a3a9b182e15a40f283903895b99f834
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1996--2009 Han-Wen Nienhuys
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef FLOWER_PROTO_HH
21 #define FLOWER_PROTO_HH
23 char const *flower_version_str0 ();
25 typedef unsigned char Byte;
26 typedef long long I64;
27 struct String_convert;
29 #include "std-string.hh"
30 using namespace std;
32 #include "real.hh"
34 template<class T> struct Interval_t;
35 template<class T> struct PQueue;
36 template<class T, class A> class Matrix;
38 typedef Interval_t<Real> Interval;
40 struct Offset;
41 struct Long_option_init;
42 struct Rational;
43 class File_name;
44 class File_path;
45 struct Getopt_long;
47 typedef unsigned char U8;
48 typedef short I16;
49 typedef unsigned short U16;
50 typedef unsigned U32;
51 typedef int I32;
52 typedef unsigned long long U64;
54 /* We should really use LLONG_MAX; unfortunately, this appears not to
55 be defined for the gub x-compiler.
57 const U64 U64_MAX = (~0ULL);
59 struct File_storage;
60 struct Mapped_file_storage;
61 struct Simple_file_storage;
63 #endif /* FLOWER_PROTO_HH */