13
0

Remove unused stuff.

git-svn-id: svn://localhost/ardour2/branches/3.0@10324 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-10-28 15:34:59 +00:00
parent 947422c095
commit 82f77de973

View File

@ -65,11 +65,6 @@ class AudioEngine : public SessionHandlePtr
public:
typedef std::set<Port*> Ports;
class disconnected_exception : public std::exception {
public:
virtual const char *what() const throw() { return "AudioEngine is disconnected"; }
};
AudioEngine (std::string client_name, std::string session_uuid);
virtual ~AudioEngine ();
@ -85,9 +80,6 @@ public:
int reconnect_to_jack ();
int disconnect_from_jack();
bool will_reconnect_at_halt ();
void set_reconnect_at_halt (bool);
int stop (bool forever = false);
int start ();
bool running() const { return _running; }
@ -286,9 +278,6 @@ private:
/// the number of frames processed since start() was called
framecnt_t _processed_frames;
bool _freewheeling;
bool _freewheel_pending;
boost::function<int(framecnt_t)> freewheel_action;
bool reconnect_on_halt;
int _usecs_per_cycle;
bool port_remove_in_progress;