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