From d0d9c645b974a22ee26cbece6ae2969b1c6ce031 Mon Sep 17 00:00:00 2001 From: Tobias Baumann Date: Thu, 3 Mar 2022 17:16:11 +0000 Subject: [PATCH] =?UTF-8?q?Dateien=20hochladen=20nach=20=E2=80=9E=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ovp_main.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ovp_main.cpp diff --git a/ovp_main.cpp b/ovp_main.cpp new file mode 100644 index 0000000..7362ec0 --- /dev/null +++ b/ovp_main.cpp @@ -0,0 +1,34 @@ +///------------------------------------------------------------------------------------------------- +/// +/// \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 +#include "ovp_defines.h" + +#include "TactileVisualization/ovpCBoxAlgorithmP300TactileVisualization.h" +#include "UDPStimCodeSender/ovpCBoxAlgorithmUDPStimcodeSender.h" +#include "TactiloController/ovpCBoxAlgorithmTactiloController.h" + +namespace OpenViBE { + namespace Plugins { + namespace Tactilebci { + + OVP_Declare_Begin() + + OVP_Declare_New(CBoxAlgorithmP300TactileVisualizationDesc); + OVP_Declare_New(CBoxAlgorithmUDPStimcodeSenderDesc); + OVP_Declare_New(CBoxAlgorithmTactiloControllerDesc); + + OVP_Declare_End() + + } // namespace Tactilebci + } // namespace Plugins +} // namespace OpenViBE