From d3554736c13531898fb720b34772a595620e661a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gl=C3=B6ckner?= Date: Mon, 25 Jan 2016 15:51:53 +0100 Subject: reformatting fix --- drumgizmo/enginefactory.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'drumgizmo/enginefactory.h') diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index 2d8da80..02a84ae 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -67,7 +67,16 @@ class EngineFactory { -private: +public: + EngineFactory(); + + const std::list& getInputEngines() const; + const std::list& getOutputEngines() const; + + std::unique_ptr createInput(const std::string& name); + std::unique_ptr createOutput(const std::string& name); + +protected: std::list input, output; // available engines #ifdef USE_JACK @@ -76,12 +85,4 @@ private: void prepareJack(); #endif -public: - EngineFactory(); - - std::list const &getInputEngines() const; - std::list const &getOutputEngines() const; - - std::unique_ptr createInput(std::string const &name); - std::unique_ptr createOutput(std::string const &name); }; -- cgit v1.2.3