VAPOR3 3.9.4
PLabel.h
Go to the documentation of this file.
1#pragma once
2
3#include "PWidget.h"
4
5class VLabel;
6
10
11class PLabel : public PWidget {
12 VLabel *_label;
13
14public:
15 PLabel(const std::string &text);
16 void updateGUI() const override {}
17};
Displays static text.
Definition: PLabel.h:11
void updateGUI() const override
Definition: PLabel.h:16
PLabel(const std::string &text)
Definition: VLabel.h:8