Skip to content
Snippets Groups Projects

WIP: Resolve "Add time stamp tolerance to problem::check()"

1 unresolved thread
2 files
+ 29
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -359,6 +359,8 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
@@ -359,6 +359,8 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
int getDim() const;
int getDim() const;
 
double getTimeTolerance() const;
 
void link(SensorBasePtr);
void link(SensorBasePtr);
template<typename classType, typename... T>
template<typename classType, typename... T>
static std::shared_ptr<classType> emplace(SensorBasePtr _sen_ptr, T&&... all);
static std::shared_ptr<classType> emplace(SensorBasePtr _sen_ptr, T&&... all);
@@ -426,6 +428,10 @@ inline int ProcessorBase::getDim() const
@@ -426,6 +428,10 @@ inline int ProcessorBase::getDim() const
{
{
return dim_;
return dim_;
}
}
 
inline double ProcessorBase::getTimeTolerance() const
 
{
 
return params_->time_tolerance;
 
}
template<typename classType, typename... T>
template<typename classType, typename... T>
std::shared_ptr<classType> ProcessorBase::emplace(SensorBasePtr _sen_ptr, T&&... all)
std::shared_ptr<classType> ProcessorBase::emplace(SensorBasePtr _sen_ptr, T&&... all)
Loading