1 /***************************************************************************
2                      eventhandler.cpp  -  Widget event handler interface
3                              -------------------
4     begin                : Sat Nov 28 2008
5     copyright            : (C) 2008 by Gabor Torok
6     email                : cctorok@yahoo.com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #include "../common/constants.h"
19 #include "eventhandler.h"
20 
EventHandler()21 EventHandler::EventHandler() {
22 }
23 
~EventHandler()24 EventHandler::~EventHandler() {
25 }
26 
RawEventHandler()27 RawEventHandler::RawEventHandler() {
28 }
29 
~RawEventHandler()30 RawEventHandler::~RawEventHandler() {
31 }
32