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.

CodecsAll.h 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include "CodecImpl.h"
  3. #include "TypeChannelLocalization.h"
  4. #include "TypeChannelUnits.h"
  5. #include "TypeExperimentInfo.h"
  6. #include "TypeFeatureVector.h"
  7. #include "TypeMatrix.h"
  8. #include "TypeSignal.h"
  9. #include "TypeSpectrum.h"
  10. #include "TypeStimulation.h"
  11. namespace OpenViBE {
  12. namespace Tracker {
  13. CODEC_IMPL_VIA_TOOLKIT(TypeChannelLocalization, TChannelLocalisationEncoder, TChannelLocalisationDecoder)
  14. CODEC_IMPL_VIA_TOOLKIT(TypeChannelUnits, TChannelUnitsEncoder, TChannelUnitsDecoder)
  15. CODEC_IMPL_VIA_TOOLKIT(TypeExperimentInfo, TExperimentInfoEncoder, TExperimentInfoDecoder)
  16. CODEC_IMPL_VIA_TOOLKIT(TypeFeatureVector, TFeatureVectorEncoder, TFeatureVectorDecoder)
  17. CODEC_IMPL_VIA_TOOLKIT(TypeMatrix, TStreamedMatrixEncoder, TStreamedMatrixDecoder)
  18. CODEC_IMPL_VIA_TOOLKIT(TypeSignal, TSignalEncoder, TSignalDecoder)
  19. CODEC_IMPL_VIA_TOOLKIT(TypeSpectrum, TSpectrumEncoder, TSpectrumDecoder)
  20. CODEC_IMPL_VIA_TOOLKIT(TypeStimulation, TStimulationEncoder, TStimulationDecoder)
  21. } // namespace Tracker
  22. } // namespace OpenViBE