NO-OP whitespace + comments

This commit is contained in:
Robin Gareus
2016-04-10 20:53:42 +02:00
parent 09202249e1
commit 1c084d1e0e
4 changed files with 15 additions and 10 deletions

View File

@@ -74,8 +74,8 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
Output
};
IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO, bool sendish = false);
IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO, bool sendish = false);
IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO, bool sendish = false);
IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO, bool sendish = false);
virtual ~IO();
@@ -94,7 +94,7 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
int ensure_io (ChanCount cnt, bool clear, void *src);
int connect_ports_to_bundle (boost::shared_ptr<Bundle>, bool exclusive, void *);
int connect_ports_to_bundle (boost::shared_ptr<Bundle>, bool exclusive, void *);
int disconnect_ports_from_bundle (boost::shared_ptr<Bundle>, void *);
BundleList bundles_connected ();
@@ -207,7 +207,7 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
Direction _direction;
DataType _default_type;
bool _active;
bool _sendish;
bool _sendish;
private:
int connecting_became_legal ();

View File

@@ -61,7 +61,7 @@ public:
int set_name (std::string const &);
/** @return flags */
PortFlags flags () const {
PortFlags flags () const {
return _flags;
}
@@ -98,9 +98,9 @@ public:
bool last_monitor() const { return _last_monitor; }
void set_last_monitor (bool yn) { _last_monitor = yn; }
PortEngine::PortHandle port_handle() { return _port_handle; }
PortEngine::PortHandle port_handle() { return _port_handle; }
void get_connected_latency_range (LatencyRange& range, bool playback) const;
void get_connected_latency_range (LatencyRange& range, bool playback) const;
void set_private_latency_range (LatencyRange& range, bool playback);
const LatencyRange& private_latency_range (bool playback) const;

View File

@@ -49,10 +49,15 @@ public:
void add (boost::shared_ptr<Port> port);
bool remove (boost::shared_ptr<Port> port);
/** nth port */
/** nth port
* @param index port index
*/
boost::shared_ptr<Port> port(size_t index) const;
/** nth port of type @a t, or nth port if t = NIL */
/** nth port of type @a t, or nth port if t = NIL
* @param t data type
* @param index port index
*/
boost::shared_ptr<Port> port(DataType t, size_t index) const;
boost::shared_ptr<AudioPort> nth_audio_port(size_t n) const;

View File

@@ -1769,7 +1769,7 @@ Playlist::region_bounds_changed (const PropertyChange& what_changed, boost::shar
}
/***********************************************************************
/* *********************************************************************
FINDING THINGS
**********************************************************************/