TAMSVIZ
Visualization and annotation tool for ROS
event.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "event.h"
5 
6 #include "log.h"
7 
8 #include <QObject>
9 #include <QPointer>
10 
11 bool EventBase::listenerCheckQPointer(
12  const std::shared_ptr<QPointer<const QObject>> &p) {
14  return (bool)q;
15 }
16 
17 std::shared_ptr<QPointer<const QObject>>
18 EventBase::listenerMakeQPointer(const QObject *o) {
19  return std::make_shared<QPointer<const QObject>>(o);
20 }
21 
22 void EventBase::begin() {
23  if (!name.empty()) {
24  // LOG_DEBUG("event " << name << " begin");
25  }
26 }
27 
28 void EventBase::end() {
29  if (!name.empty()) {
30  // LOG_DEBUG("event " << name << " end");
31  }
32 }
Definition: event.h:14