]> vaikene.ee Git - evaf/blob - src/libs/Common/event.cpp
Warning fixes and copyright update.
[evaf] / src / libs / Common / event.cpp
1 /**
2 * @file Common/event.cpp
3 * @brief Event class implementation
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011-2019 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #include "event.h"
21
22 using namespace eVaf::Common;
23
24 QEvent::Type const Event::eVafEvent = QEvent::Type(QEvent::registerEventType());
25
26 Event::~Event()
27 {}