#ifndef __SP_KDE_PRIVATE_H__ #define __SP_KDE_PRIVATE_H__ /* * KDE utilities for Sodipodi - adapted to the CalcForge framework * * Authors: * Lauris Kaplinski * Kevin Kofler * * Copyright (C) 2003-2005 Authors * * Released under GNU GPL, read the file 'COPYING' for more information */ #include class SPKDEBridge : public QObject { Q_OBJECT public: SPKDEBridge (const char *name) : QObject (NULL, name) { /* NOP */ } public slots: void EventHook (void); void TimerHook (void); }; #endif