From 9fb28bbc08df7d2a867612ec2b8c073610ea0c09 Mon Sep 17 00:00:00 2001 From: Tobias Baumann Date: Mon, 28 Feb 2022 12:17:31 +0000 Subject: [PATCH] =?UTF-8?q?Dateien=20hochladen=20nach=20=E2=80=9Esrc?= =?UTF-8?q?=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ovp_main.cpp | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/src/ovp_main.cpp b/src/ovp_main.cpp index 4e55bd1..edca169 100644 --- a/src/ovp_main.cpp +++ b/src/ovp_main.cpp @@ -1,3 +1,13 @@ +///------------------------------------------------------------------------------------------------- +/// +/// \file ovp_main.cpp +/// \brief Declarations/Includes for the TactileBCI Plugin +/// \author Tobias Baumann (TH-Nürnberg). +/// \date Mon Feb 07 14:59:56 2022. +/// \copyright GNU Affero General Public License v3.0. +/// +///------------------------------------------------------------------------------------------------- + //Tactile BCI Includes #include #include @@ -5,18 +15,20 @@ #include "TactileVisualization/ovpCBoxAlgorithmP300TactileVisualization.h" #include "UDPStimCodeSender/ovpCBoxAlgorithmUDPStimcodeSender.h" +#include "TactileStimulation/ovpCBoxAlgorithmTactileStimulation.h" namespace OpenViBE { -namespace Plugins { -namespace Tactilebci { + namespace Plugins { + namespace Tactilebci { -OVP_Declare_Begin() + OVP_Declare_Begin() - OVP_Declare_New(CBoxAlgorithmP300TactileVisualizationDesc); - OVP_Declare_New(CBoxAlgorithmUDPStimcodeSenderDesc); + OVP_Declare_New(CBoxAlgorithmP300TactileVisualizationDesc); + OVP_Declare_New(CBoxAlgorithmUDPStimcodeSenderDesc); + OVP_Declare_New(CBoxAlgorithmTactileStimulationDesc); -OVP_Declare_End() + OVP_Declare_End() -} // namespace Tactilebci -} // namespace Plugins + } // namespace Tactilebci + } // namespace Plugins } // namespace OpenViBE