]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/flower-proto.hh
Add '-dcrop' option to ps and svg backends
[lilypond.git] / flower / include / flower-proto.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1996--2015 Han-Wen Nienhuys
5
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.
10
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.
15
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/>.
18 */
19
20 #ifndef FLOWER_PROTO_HH
21 #define FLOWER_PROTO_HH
22
23 char const *flower_version_str0 ();
24
25 typedef unsigned char Byte;
26 typedef long long I64;
27 class String_convert;
28
29 #include "real.hh"
30 using namespace std;
31
32 template<class T> struct Interval_t;
33 template<class T> struct PQueue;
34 template<class T, class A> class Matrix;
35
36 typedef Interval_t<Real> Interval;
37
38 class Offset;
39 struct Long_option_init;
40 class Rational;
41 class File_name;
42 class File_path;
43 class Getopt_long;
44
45 typedef unsigned char U8;
46 typedef short I16;
47 typedef unsigned short U16;
48 typedef unsigned U32;
49 typedef int I32;
50 typedef unsigned long long U64;
51
52 /* We should really use LLONG_MAX; unfortunately, this appears not to
53    be defined for the gub x-compiler.
54 */
55 const U64 U64_MAX = (~0ULL);
56
57 struct File_storage;
58 struct Mapped_file_storage;
59 struct Simple_file_storage;
60
61 #endif /* FLOWER_PROTO_HH */