diff options
Diffstat (limited to 'tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h')
-rw-r--r-- | tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h b/tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h index bb3dbe8..fd5104e 100644 --- a/tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h +++ b/tests/service-mocks/accounts-mock/AccountsServiceSoundMock.h @@ -37,10 +37,13 @@ class AccountsServiceSoundMock : public QObject, protected QDBusContext { Q_OBJECT Q_PROPERTY(double Volume READ volume WRITE setVolume) + Q_PROPERTY(QString LastRunningPlayer READ lastRunningPlayer WRITE setLastRunningPlayer) public Q_SLOTS: double volume() const; void setVolume(double volume); + QString lastRunningPlayer() const; + void setLastRunningPlayer(QString const & lastRunningPlayer); public: AccountsServiceSoundMock(QObject* parent = 0); @@ -48,6 +51,7 @@ public: private: double volume_; + QString lastRunningPlayer_; DBusPropertiesNotifier notifier_; }; |