aseprite/src/ui/event.cpp

26 lines
370 B
C++
Raw Normal View History

// ASEPRITE gui library
2013-01-27 23:13:13 +08:00
// Copyright (C) 2001-2013 David Capello
//
// This source file is distributed under a BSD-like license, please
// read LICENSE.txt for more information.
2012-06-18 09:49:58 +08:00
#include "ui/event.h"
namespace ui {
Event::Event(Component* source)
: m_source(source)
{
}
Event::~Event()
{
}
Component* Event::getSource()
{
return m_source;
}
} // namespace ui