aseprite/src/ui/event.cpp

30 lines
417 B
C++
Raw Normal View History

// Aseprite UI Library
2015-06-23 17:40:54 +00:00
// Copyright (C) 2001-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
2015-06-23 17:40:54 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2012-06-18 01:49:58 +00:00
#include "ui/event.h"
namespace ui {
Event::Event(Component* source)
: m_source(source)
{
}
Event::~Event()
{
}
Component* Event::getSource()
{
return m_source;
}
} // namespace ui