summaryrefslogtreecommitdiff
path: root/libresourceqt/include/qt4/policy/audio-resource.h
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-18 12:52:29 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-18 12:52:29 +0200
commita36aef2b7c5128785a60213a6607191a8bfb1ecf (patch)
treeadd37ed9e8b7172dd5df4fab24a4333a0dd7116c /libresourceqt/include/qt4/policy/audio-resource.h
parentfdb67c341fcb9ea0ae29a7889227ded6ac66a362 (diff)
astyled the code
Diffstat (limited to 'libresourceqt/include/qt4/policy/audio-resource.h')
-rw-r--r--libresourceqt/include/qt4/policy/audio-resource.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/libresourceqt/include/qt4/policy/audio-resource.h b/libresourceqt/include/qt4/policy/audio-resource.h
index 1736fdb..1ba5f5a 100644
--- a/libresourceqt/include/qt4/policy/audio-resource.h
+++ b/libresourceqt/include/qt4/policy/audio-resource.h
@@ -17,26 +17,29 @@ public:
virtual ~AudioResource();
QString audioGroup() const;
+ bool audioGroupIsSet() const;
void setAudioGroup(const QString & newGroup);
quint32 processID() const;
void setProcessID(quint32 newPID);
- QString streamTag() const;
- void setStreamTag(const QString & newStreamTag);
+ QString streamTagName() const;
+ QString streamTagValue() const;
+ bool streamTagIsSet() const;
+ void setStreamTag(const QString &name, const QString &value);
virtual ResourceType type() const;
virtual Resource * clone() const;
private:
QString group;
quint32 pid;
- QString stream;
+ QString streamName;
+ QString streamValue;
signals:
void pidChanged(quint32 newPid);
void audioGroupChanged(const QString &newGroup);
- void streamTagChanged(const QString &newTag);
+ void streamTagChanged(const QString &name, const QString &value);
};
}
#endif
-