~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to flower/include/flower-proto.hh

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
1
/*
3
2
  fflower-proto.hh -- typenames in flowerlib
4
3
 
5
 
  (c) 1996--2004 Han-Wen Nienhuys
 
4
  (c) 1996--2006 Han-Wen Nienhuys
6
5
*/
7
6
 
8
 
#ifndef FPROTO_HH
9
 
#define FPROTO_HH
10
 
 
11
 
 
12
 
char const * flower_version_str0 ();
13
 
 
14
 
template<class T> struct Link_array;
15
 
template<class T> struct Array;
16
 
template<class T,class K> struct Assoc;
17
 
template<class K, class V> struct Hash_table;
18
 
template<class K, class V> struct Hash_table_iter;
19
 
template<class T> struct Link_list;
 
7
#ifndef FLOWER_PROTO_HH
 
8
#define FLOWER_PROTO_HH
 
9
 
 
10
char const *flower_version_str0 ();
 
11
 
 
12
typedef unsigned char Byte;
 
13
struct String_convert;
 
14
 
 
15
#include "std-string.hh"
 
16
using namespace std;
 
17
 
 
18
#include "real.hh"
 
19
 
20
20
template<class T> struct Interval_t;
21
21
template<class T> struct PQueue;
22
22
 
23
 
#include "real.hh"
24
23
 
25
24
typedef Interval_t<Real> Interval;
26
 
typedef Interval_t<int> Slice;  // junkme.
27
25
 
28
26
struct Offset;
29
27
struct Long_option_init;
30
28
struct Rational;
31
 
struct File_path;
 
29
class File_name;
 
30
class File_path;
32
31
struct Getopt_long;
33
 
struct String_data;
34
 
struct String_handle;
35
 
struct String_convert;
36
 
struct String;
37
32
 
38
33
struct Text_stream;
39
34
struct Data_file;
47
42
typedef int I32;
48
43
typedef long long I64;
49
44
 
50
 
typedef unsigned char Byte;
51
45
 
52
46
struct Duration;
53
47
struct Duration_iterator;
58
52
struct Mapped_file_storage;
59
53
struct Simple_file_storage;
60
54
 
61
 
 
62
 
 
63
 
#endif // FPROTO_HH
64
 
 
 
55
#endif /* FLOWER_PROTO_HH */