mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-04 17:40:01 +00:00
26 lines
385 B
C++
26 lines
385 B
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#include "ui/property.h"
|
|
|
|
namespace ui {
|
|
|
|
Property::Property(const std::string& name)
|
|
: m_name(name)
|
|
{
|
|
}
|
|
|
|
Property::~Property()
|
|
{
|
|
}
|
|
|
|
std::string Property::getName() const
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
} // namespace ui
|