summaryrefslogtreecommitdiff
path: root/gui/KPackageKit/kpk.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/KPackageKit/kpk.h')
-rw-r--r--gui/KPackageKit/kpk.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/gui/KPackageKit/kpk.h b/gui/KPackageKit/kpk.h
new file mode 100644
index 0000000..1ca3bc8
--- /dev/null
+++ b/gui/KPackageKit/kpk.h
@@ -0,0 +1,42 @@
+/* This file is part of the KDE project
+ * Copyright (C) 2008 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * 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.
+ *
+ */
+#ifndef KPACKAGEKIT_H
+#define KPACKAGEKIT_H
+
+#include <KUniqueApplication>
+#include <ksystemtrayicon.h>
+
+namespace kpackagekit {
+
+class Kpk : public KUniqueApplication
+{
+Q_OBJECT
+
+public:
+ Kpk();
+ virtual ~Kpk();
+
+ virtual int newInstance();
+private:
+ KSystemTrayIcon *m_smartSTI;
+};
+
+}
+
+#endif