Instrument doxyCluster
Loading...
Searching...
No Matches
object.h
Go to the documentation of this file.
1#ifndef Object_H
2#define Object_H
3
4#include "lane.h"
5#include <string>
6#include <vector>
7
8class Object : public QWidget {
9 Q_OBJECT
10
11private:
12 QWidget *popup = nullptr;
13 int object;
14 QString speed50_path;
15 QString speed80_path;
16
17public:
18 Object(QWidget *parent = nullptr);
19 ~Object();
20 int get_object();
21 QString get_speed50_path() const { return speed50_path; }
22 QString get_speed80_path() const { return speed80_path; }
23 void set_object(int i, const QString &topicName);
24
25protected:
26 void paintEvent(QPaintEvent *) override;
27
28signals:
29};
30
31#endif
Definition object.h:8
QString get_speed80_path() const
Definition object.h:22
QString get_speed50_path() const
Definition object.h:21
void paintEvent(QPaintEvent *) override
Definition object.cpp:14
int get_object()
Definition object.cpp:46
void set_object(int i, const QString &topicName)
Definition object.cpp:34
~Object()
Definition object.cpp:51