summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/io_processor.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-04-19 15:03:37 +0200
committerRobin Gareus <robin@gareus.org>2019-04-19 15:03:37 +0200
commit5553979511708c4cc40616d39c92936f02c9d0a3 (patch)
tree4223d716dc0ae36efa8d7362d8092377a749434d /libs/ardour/ardour/io_processor.h
parentc28522942301b7ede38871d00e4d75bf22fbc545 (diff)
NO-OP: whitespace
Diffstat (limited to 'libs/ardour/ardour/io_processor.h')
-rw-r--r--libs/ardour/ardour/io_processor.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libs/ardour/ardour/io_processor.h b/libs/ardour/ardour/io_processor.h
index 75e68a42aa..20eada8b3a 100644
--- a/libs/ardour/ardour/io_processor.h
+++ b/libs/ardour/ardour/io_processor.h
@@ -38,11 +38,10 @@ class Session;
class IO;
class Route;
-/** A mixer strip element (Processor) with 1 or 2 IO elements.
- */
+/** A mixer strip element (Processor) with 1 or 2 IO elements. */
class LIBARDOUR_API IOProcessor : public Processor
{
- public:
+public:
IOProcessor (Session&, bool with_input, bool with_output,
const std::string& proc_name, const std::string io_name="",
ARDOUR::DataType default_type = DataType::AUDIO, bool sendish=false);
@@ -59,10 +58,11 @@ class LIBARDOUR_API IOProcessor : public Processor
virtual ChanCount natural_output_streams() const;
virtual ChanCount natural_input_streams () const;
- boost::shared_ptr<IO> input() { return _input; }
- boost::shared_ptr<const IO> input() const { return _input; }
+ boost::shared_ptr<IO> input() { return _input; }
+ boost::shared_ptr<const IO> input() const { return _input; }
boost::shared_ptr<IO> output() { return _output; }
boost::shared_ptr<const IO> output() const { return _output; }
+
void set_input (boost::shared_ptr<IO>);
void set_output (boost::shared_ptr<IO>);
@@ -79,11 +79,11 @@ class LIBARDOUR_API IOProcessor : public Processor
static void prepare_for_reset (XMLNode& state, const std::string& name);
- protected:
+protected:
boost::shared_ptr<IO> _input;
boost::shared_ptr<IO> _output;
- private:
+private:
/* disallow copy construction */
IOProcessor (const IOProcessor&);