summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/io.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-10-27 23:36:42 +0000
committerCarl Hetherington <carl@carlh.net>2011-10-27 23:36:42 +0000
commit0a87941c706a03b43ccebc229bf1df3a7a362b46 (patch)
tree96b4fc5ff14380cd3fbc5086d0968279a33024ea /libs/ardour/ardour/io.h
parente82944820716082626675a79f6c710057ce5787f (diff)
Minor cleanups to IO.
git-svn-id: svn://localhost/ardour2/branches/3.0@10322 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/io.h')
-rw-r--r--libs/ardour/ardour/io.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/libs/ardour/ardour/io.h b/libs/ardour/ardour/io.h
index 5a54b903e5..e318258e19 100644
--- a/libs/ardour/ardour/io.h
+++ b/libs/ardour/ardour/io.h
@@ -170,12 +170,10 @@ class IO : public SessionObject, public Latent
*/
PBD::Signal1<bool, ChanCount, BoolCombiner> PortCountChanging;
- static int disable_connecting (void);
- static int enable_connecting (void);
- static int disable_ports (void);
- static int enable_ports (void);
+ static int disable_connecting ();
+ static int enable_connecting ();
- static PBD::Signal1<void,ChanCount> PortCountChanged; // emitted when the number of ports changes
+ static PBD::Signal1<void, ChanCount> PortCountChanged; // emitted when the number of ports changes
static std::string name_from_state (const XMLNode&);
static void set_name_in_state (XMLNode&, const std::string&);
@@ -216,9 +214,9 @@ class IO : public SessionObject, public Latent
boost::shared_ptr<Bundle> _bundle; ///< a bundle representing our ports
struct UserBundleInfo {
- UserBundleInfo (IO*, boost::shared_ptr<UserBundle> b);
- boost::shared_ptr<UserBundle> bundle;
- PBD::ScopedConnection changed;
+ UserBundleInfo (IO*, boost::shared_ptr<UserBundle> b);
+ boost::shared_ptr<UserBundle> bundle;
+ PBD::ScopedConnection changed;
};
std::vector<UserBundleInfo*> _bundles_connected; ///< user bundles connected to our ports
@@ -229,7 +227,6 @@ class IO : public SessionObject, public Latent
int ensure_ports (ChanCount, bool clear, void *src);
void check_bundles_connected ();
- void check_bundles (std::vector<UserBundleInfo*>&, const PortSet&);
void bundle_changed (Bundle::Change);