NepomukDaemons
servicecontrol.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _NEPOMUK_SERVICE_CONTROL_H_
00020 #define _NEPOMUK_SERVICE_CONTROL_H_
00021
00022 #include <QtCore/QObject>
00023
00024
00025 namespace Nepomuk {
00026 class ServiceControl : public QObject
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 ServiceControl( QObject* parent = 0 );
00032 ~ServiceControl();
00033
00034 Q_SIGNALS:
00035 void serviceInitialized( bool );
00036
00037 public Q_SLOTS:
00038 void setServiceInitialized( bool );
00039 bool isInitialized() const;
00040 void shutdown();
00041
00042 private:
00043 bool m_initialized;
00044 };
00045 }
00046
00047 #endif