24 lines
335 B
C++
24 lines
335 B
C++
//
|
|
// Created by selim on 18.12.22.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_LABEL_H
|
|
#define AUTOCAT_GNOME_LABEL_H
|
|
|
|
#include "Widget.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class Label: public Widget {
|
|
public:
|
|
Label();
|
|
using Widget::Widget;
|
|
|
|
public:
|
|
void setText(const std::string& text);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_LABEL_H
|