| 1 | // Aseprite UI Library |
|---|---|
| 2 | // Copyright (C) 2001-2013 David Capello |
| 3 | // |
| 4 | // This file is released under the terms of the MIT license. |
| 5 | // Read LICENSE.txt for more information. |
| 6 | |
| 7 | #include "ui/property.h" |
| 8 | |
| 9 | namespace ui { |
| 10 | |
| 11 | Property::Property(const std::string& name) |
| 12 | : m_name(name) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | Property::~Property() |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | std::string Property::getName() const |
| 21 | { |
| 22 | return m_name; |
| 23 | } |
| 24 | |
| 25 | } // namespace ui |
| 26 |