2 #ifndef GRAMODS_TRACK_ANALOGSTRACKER
3 #define GRAMODS_TRACK_ANALOGSTRACKER
5 #include <gmTrack/config.hh>
7 #include <gmCore/Object.hh>
12 BEGIN_NAMESPACE_GMTRACK;
22 typedef std::chrono::steady_clock clock;
25 std::vector<float> analogs;
26 clock::time_point time;
33 virtual std::string
getDefaultKey()
override {
return "analogsTracker"; }
43 END_NAMESPACE_GMTRACK;
Base type for objects in the Gramods package for standardized handling of construction,...
Definition: Object.hh:42
The base of AnalogsTrackers.
Definition: AnalogsTracker.hh:18
virtual bool getAnalogs(AnalogsSample &b)=0
Replaces the contents of p with analogs data.
virtual std::string getDefaultKey() override
Returns the default key, in Configuration, for the Object.
Definition: AnalogsTracker.hh:33
Definition: AnalogsTracker.hh:24