summaryrefslogtreecommitdiff
path: root/kde3/src/dapidaemon.h
diff options
context:
space:
mode:
Diffstat (limited to 'kde3/src/dapidaemon.h')
-rw-r--r--kde3/src/dapidaemon.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/kde3/src/dapidaemon.h b/kde3/src/dapidaemon.h
deleted file mode 100644
index 32b1790..0000000
--- a/kde3/src/dapidaemon.h
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-// Copyright (C) 2007 Kevin Krammer <kevin.krammer@gmx.at>
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-//
-
-#if !defined(DAPIDAEMON_H_INCLUDED)
-#define DAPIDAEMON_H_INCLUDED
-
-// Qt D-Bus includes
-#include <dbus/qdbusconnection.h>
-
-// forward declarations
-class DAPIImpl;
-
-class DAPIDaemon
-{
-public:
- DAPIDaemon();
-
- ~DAPIDaemon();
-
- bool initConnection();
-
-private:
- QDBusConnection m_connection;
-
- DAPIImpl* m_dapiInterface;
-};
-
-#endif
-
-// End of File