You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ovp_main.cpp 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. ///-------------------------------------------------------------------------------------------------
  2. ///
  3. /// \file ovp_main.cpp
  4. /// \brief Declarations/Includes for the TactileBCI Plugin
  5. /// \author Tobias Baumann (TH-Nürnberg).
  6. /// \date Mon Feb 07 14:59:56 2022.
  7. /// \copyright <a href="https://choosealicense.com/licenses/agpl-3.0/">GNU Affero General Public License v3.0</a>.
  8. ///
  9. ///-------------------------------------------------------------------------------------------------
  10. //Tactile BCI Includes
  11. #include <vector>
  12. #include <openvibe/ov_all.h>
  13. #include "ovp_defines.h"
  14. #include "TactileVisualization/ovpCBoxAlgorithmP300TactileVisualization.h"
  15. #include "UDPStimCodeSender/ovpCBoxAlgorithmUDPStimcodeSender.h"
  16. #include "TactiloController/ovpCBoxAlgorithmTactiloController.h"
  17. namespace OpenViBE {
  18. namespace Plugins {
  19. namespace Tactilebci {
  20. OVP_Declare_Begin()
  21. OVP_Declare_New(CBoxAlgorithmP300TactileVisualizationDesc);
  22. OVP_Declare_New(CBoxAlgorithmUDPStimcodeSenderDesc);
  23. OVP_Declare_New(CBoxAlgorithmTactiloControllerDesc);
  24. OVP_Declare_End()
  25. } // namespace Tactilebci
  26. } // namespace Plugins
  27. } // namespace OpenViBE