summaryrefslogtreecommitdiff
path: root/drumgizmo/enginefactory.h
diff options
context:
space:
mode:
authorChristian Glöckner <cgloeckner@freenet.de>2016-01-29 14:05:53 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-02-09 09:03:17 +0100
commitd991ef4d089bc67710512f7d2f3ffba38663d2e8 (patch)
tree29e3215fba167aa7d21ed33c1d2b0c1d3041dfb9 /drumgizmo/enginefactory.h
parent67ac001b417e0a5497f02e59cd33a2248964eac5 (diff)
Fixed style issues
Diffstat (limited to 'drumgizmo/enginefactory.h')
-rw-r--r--drumgizmo/enginefactory.h5
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
-
};