summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/delivery.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-20 17:49:25 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-20 17:49:25 +0000
commitfa40fb2d98db1a854f00a911857149db5ec414c2 (patch)
treebec14307bf6e06425a5182fae15faed8984eaf95 /libs/ardour/ardour/delivery.h
parent9a0d7cafebcda82c4745b1db7d4d36aa37b8db4b (diff)
Make a few things private in Delivery; couple of minor
cleanups. git-svn-id: svn://localhost/ardour2/branches/3.0@10715 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/delivery.h')
-rw-r--r--libs/ardour/ardour/delivery.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/libs/ardour/ardour/delivery.h b/libs/ardour/ardour/delivery.h
index e74d0cc524..743854027d 100644
--- a/libs/ardour/ardour/delivery.h
+++ b/libs/ardour/ardour/delivery.h
@@ -107,19 +107,22 @@ public:
Role _role;
BufferSet* _output_buffers;
gain_t _current_gain;
- bool _no_outs_cuz_we_no_monitor;
- boost::shared_ptr<MuteMaster> _mute_master;
- bool no_panner_reset;
boost::shared_ptr<PannerShell> _panshell;
+ gain_t target_gain ();
+
+ private:
+ bool _no_outs_cuz_we_no_monitor;
+ boost::shared_ptr<MuteMaster> _mute_master;
+
static bool panners_legal;
- static PBD::Signal0<int> PannersLegal;
+ static PBD::Signal0<int> PannersLegal;
int panners_became_legal ();
PBD::ScopedConnection panner_legal_c;
void output_changed (IOChange, void*);
- gain_t target_gain ();
+ bool _no_panner_reset;
};