Browse Source

Dateien hochladen nach „src“

master
Tobias Baumann 2 years ago
parent
commit
9fb28bbc08
1 changed files with 20 additions and 8 deletions
  1. 20
    8
      src/ovp_main.cpp

+ 20
- 8
src/ovp_main.cpp View File

@@ -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 <a href="https://choosealicense.com/licenses/agpl-3.0/">GNU Affero General Public License v3.0</a>.
///
///-------------------------------------------------------------------------------------------------
//Tactile BCI Includes
#include <vector>
#include <openvibe/ov_all.h>
@@ -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

Loading…
Cancel
Save