Simple GUI Library
label.h
Go to the documentation of this file.
1/**
2 * @author Nikita Mochalov (github.com/tralf-strues)
3 * @file label.h
4 * @date 2021-11-10
5 *
6 * @copyright Copyright (c) 2021
7 */
8
9#pragma once
10
11#include "control.h"
12
13namespace Sgl
14{
15 class Label : public Control
16 {
17 public:
18
19 private:
20 };
21}