~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

« back to all changes in this revision

Viewing changes to libs/ardour/ardour/ardour.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-07-29 11:27:04 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729112704-x1rmgb4tjotjyu5u
Tags: 1:2.5-0ubuntu1
* New upstream release.
* debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
  Ubuntu doesn't concern itself with s390.
* debian/control:
  - Fix package description, thanks to the patch in Debian bug #485892.
  - Metadata cleanup and sync control/control.in files.
  - Add libaubio-dev to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include <ardour/configuration.h>
33
33
#include <ardour/types.h>
34
34
 
 
35
// #include <jack/jack.h> need this to inline jack_get_microseconds
 
36
 
35
37
namespace MIDI {
36
38
        class MachineControl;
37
39
        class Port;
63
65
        const layer_t max_layer = UCHAR_MAX;
64
66
 
65
67
        microseconds_t get_microseconds ();
66
 
 
 
68
/*      {
 
69
        JACK has exported this functionality for a long time now 
 
70
        but inlining this causes problems
 
71
        return (microseconds_t) jack_get_time();
 
72
        }
 
73
*/
67
74
        Change new_change ();
68
75
 
69
76
        extern Change StartChanged;