1// Aseprite UI Library
2// Copyright (C) 2001-2017 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef UI_LABEL_H_INCLUDED
8#define UI_LABEL_H_INCLUDED
9#pragma once
10
11#include "gfx/color.h"
12#include "ui/widget.h"
13
14namespace ui {
15
16 class Label : public Widget {
17 public:
18 Label(const std::string& text);
19 };
20
21} // namespace ui
22
23#endif
24