aseprite/src/ui/event.cpp

29 lines
417 B
C++
Raw Normal View History

// Aseprite UI Library
2015-06-24 01:40:54 +08: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-24 01:40:54 +08:00
#ifdef HAVE_CONFIG_H
2024-12-16 21:10:34 +08:00
#include "config.h"
2015-06-24 01:40:54 +08:00
#endif
2012-06-18 09:49:58 +08:00
#include "ui/event.h"
namespace ui {
2024-12-16 21:10:34 +08:00
Event::Event(Component* source) : m_source(source)
{
}
Event::~Event()
{
}
Component* Event::getSource()
{
return m_source;
}
} // namespace ui