soprano
dbusexportmodel.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
00020
00021
00022
00023 #ifndef _SOPRANO_SERVER_DBUS_EXPORT_MODEL_H_
00024 #define _SOPRANO_SERVER_DBUS_EXPORT_MODEL_H_
00025
00026 #include "filtermodel.h"
00027 #include "soprano_export.h"
00028
00029 namespace Soprano {
00030 namespace Server {
00059 class SOPRANO_SERVER_EXPORT DBusExportModel : public FilterModel
00060 {
00061 Q_OBJECT
00062
00063 public:
00068 DBusExportModel( Model* model = 0 );
00069
00073 ~DBusExportModel();
00074
00079 bool registerModel( const QString& dbusObjectPath );
00080
00085 void unregisterModel();
00086
00091 QString dbusObjectPath() const;
00092
00093 private:
00094 class Private;
00095 Private* const d;
00096 };
00097 }
00098 }
00099
00100 #endif