dtor first
[personal-kdebase.git] / workspace / ksysguard / gui / SensorDisplayLib / DummyDisplay.h
blob85059c17ec6acc9a9fee566184430d79f12b933a
1 /*
2 KSysGuard, the KDE System Guard
4 Copyright (c) 1999 - 2001 Chris Schlaeger <cs@kde.org>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License version 2 or at your option version 3 as published by
9 the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #ifndef KSG_DUMMYDISPLAY_H
23 #define KSG_DUMMYDISPLAY_H
25 #include <SensorDisplay.h>
26 #include <QEvent>
28 class DummyDisplay : public KSGRD::SensorDisplay
30 Q_OBJECT
32 public:
33 DummyDisplay( QWidget* parent, SharedSettings *workSheetSettings);
34 virtual ~DummyDisplay() {}
36 virtual bool eventFilter( QObject*, QEvent* );
39 #endif