TAMSVIZ
Visualization and annotation tool for ROS
watcher.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "variant.h"
7 
8 class Watcher {
9  Variant _snapshot;
10 
11 public:
12  template <class... Args> bool changed(const Args &... args) {
13  if (std::type_index(typeid(std::make_tuple(args...))) == _snapshot.type()) {
14  auto tuple = std::make_tuple(args...);
15  if (tuple != _snapshot.value<decltype(tuple)>()) {
16  _snapshot = Variant(tuple);
17  return true;
18  }
19  } else {
20  _snapshot = Variant(std::make_tuple(args...));
21  return true;
22  }
23  return false;
24  }
25 };
Definition: watcher.h:8
Definition: variant.h:9