RTC Toolkit 5.1.0
Loading...
Searching...
No Matches
recordingInfo.hpp
Go to the documentation of this file.
1
12#ifndef RTCTK_COMPONENTFRAMEWORK_RECORDINGINFO_HPP
13#define RTCTK_COMPONENTFRAMEWORK_RECORDINGINFO_HPP
14
16
17#include <cstdint>
18#include <tuple>
19
21
22template <class T>
24 // specializations need to implement these:
25 // typedef T DataType;
26 // typedef void Output;
27 // typedef void Recorder;
28 // static constexpr Output AsTuple(const DataType&);
29 // static constexpr uint32_t SampleId(const DataType&);
30};
31
32} // namespace rtctk::componentFramework
33
34#endif // RTCTK_COMPONENTFRAMEWORK_RECORDINGINFO_HPP
Provides an abstract DataRecorder class as the output stage for a recording unit.
Definition commandReplier.cpp:22
Definition recordingInfo.hpp:23