AutoCatGnome/gtkpp/Label.h
2022-12-31 00:28:31 +03:00

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