diff options
Diffstat (limited to 'drumgizmo/enginefactory.h')
-rw-r--r-- | drumgizmo/enginefactory.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index d7e63ee..01e2610 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -75,7 +75,7 @@ public: //! Query list of available input engines' names //! \return const reference to the list const std::list<std::string>& getInputEngines() const; - + //! Query list of available output engines' names //! \return const reference to the list const std::list<std::string>& getOutputEngines() const; @@ -84,7 +84,7 @@ public: //! \param name Name of the input engine that should be initialized //! \return unique_ptr to input engine or nullptr if engine is not supported std::unique_ptr<AudioInputEngine> createInput(const std::string& name); - + //! Create input engine by name //! \param name Name of the output engine that should be initialized //! \return unique_ptr to input engine or nullptr if engine is not supported @@ -100,5 +100,4 @@ protected: // Utility to initialize jack (once) void prepareJack(); #endif - }; |