TactileBCI/src/ovp_main.cpp

35 lines
1.2 KiB
C++
Raw Normal View History

2022-02-28 12:17:31 +00:00
///-------------------------------------------------------------------------------------------------
///
/// \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 <a href="https://choosealicense.com/licenses/agpl-3.0/">GNU Affero General Public License v3.0</a>.
///
///-------------------------------------------------------------------------------------------------
2022-02-10 17:57:09 +00:00
//Tactile BCI Includes
#include <vector>
#include <openvibe/ov_all.h>
#include "ovp_defines.h"
#include "TactileVisualization/ovpCBoxAlgorithmP300TactileVisualization.h"
#include "UDPStimCodeSender/ovpCBoxAlgorithmUDPStimcodeSender.h"
2022-03-04 09:48:39 +00:00
#include "TactiloController/ovpCBoxAlgorithmTactiloController.h"
2022-02-10 17:57:09 +00:00
namespace OpenViBE {
2022-02-28 12:17:31 +00:00
namespace Plugins {
namespace Tactilebci {
2022-02-10 17:57:09 +00:00
2022-02-28 12:17:31 +00:00
OVP_Declare_Begin()
2022-02-10 17:57:09 +00:00
2022-02-28 12:17:31 +00:00
OVP_Declare_New(CBoxAlgorithmP300TactileVisualizationDesc);
OVP_Declare_New(CBoxAlgorithmUDPStimcodeSenderDesc);
2022-03-03 17:07:52 +00:00
OVP_Declare_New(CBoxAlgorithmTactiloControllerDesc);
2022-02-10 17:57:09 +00:00
2022-02-28 12:17:31 +00:00
OVP_Declare_End()
2022-02-10 17:57:09 +00:00
2022-02-28 12:17:31 +00:00
} // namespace Tactilebci
} // namespace Plugins
2022-02-10 17:57:09 +00:00
} // namespace OpenViBE