From f173da51b49c4fb2a0a6320cf91451a11e8058f9 Mon Sep 17 00:00:00 2001 From: "Dipl.-Ing. Jonas Stienen" <jst@akustik.rwth-aachen.de> Date: Wed, 4 Apr 2018 18:35:24 +0200 Subject: [PATCH] Style --- include/ITAStreamYJunction.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/include/ITAStreamYJunction.h b/include/ITAStreamYJunction.h index 6aaaa00..32ef057 100644 --- a/include/ITAStreamYJunction.h +++ b/include/ITAStreamYJunction.h @@ -20,7 +20,7 @@ #define INCLUDE_WATCHER_ITA_STREAM_Y_JUNCTION #include <ITADataSourcesDefinitions.h> - + #include <ITATypes.h> class ITADatasource; @@ -31,9 +31,10 @@ class ITAStreamPatchbay; * Die Klasse ITAStreamYJunction realisiert eine 1:n-Verzweigung f�r Audiodatenstr�me. * Hierbei wird eine Eingangsdatenquelle auf n Ausg�nge repliziert. */ -class ITAStreamYJunction { +class ITA_DATA_SOURCES_API ITAStreamYJunction +{ public: - ITAStreamYJunction(unsigned int uiOutputs, ITADatasource* pdsInput=NULL); + ITAStreamYJunction( unsigned int uiOutputs, ITADatasource* pdsInput = NULL ); virtual ~ITAStreamYJunction(); @@ -43,20 +44,20 @@ public: //! Eingangsdatenquelle setzen /** * Setzt die eingangsseitige Datenquelle. - * + * * \important Die Methode darf nicht mit dem Nullzeiger als Parameter aufgerufen werden. * Ferner muss die neue Datenquelle die gleichen Eigenschaften wie die zuvor * zugeordnete Datenquelle aufweisen, falls letztere zugeordnet war. * * \note Im Fehlerfall l�st die Methode ein ITAException aus */ - void SetInputDatasource(ITADatasource* pdsInput); + void SetInputDatasource( ITADatasource* pdsInput ); //! Anzahl der Ausg�nge zur�ckgeben unsigned int GetNumberOfOutputs(); //! Eine Ausgangsdatenquelle zur�ckgeben - ITADatasource* GetOutputDatasource(unsigned int uiIndex); + ITADatasource* GetOutputDatasource( unsigned int uiIndex ); protected: ITAStreamPatchbay* m_pImpl; -- GitLab