aboutsummaryrefslogtreecommitdiffstats
path: root/pulse.h
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-01-02 09:24:59 -0500
committerDave Reisner <dreisner@archlinux.org>2013-01-02 09:24:59 -0500
commitaa6847b94511728250333125c3dd9bec7b65759a (patch)
tree2c7d9e3b9876a38d85e4b76067d4336b9456d2a3 /pulse.h
parentfa689e0995b6c31f2cf529916399c4d9db299495 (diff)
downloadmirror-ponymix-aa6847b94511728250333125c3dd9bec7b65759a.tar.gz
mirror-ponymix-aa6847b94511728250333125c3dd9bec7b65759a.tar.bz2
mirror-ponymix-aa6847b94511728250333125c3dd9bec7b65759a.zip
rename class Pulse to PulseClient
Diffstat (limited to 'pulse.h')
-rw-r--r--pulse.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/pulse.h b/pulse.h
index 1e91352..9a61108 100644
--- a/pulse.h
+++ b/pulse.h
@@ -55,7 +55,7 @@ class Device {
enum DeviceType Type() const { return type_; }
private:
- friend class Pulse;
+ friend class PulseClient;
void update_volume(const pa_cvolume& newvol);
@@ -83,7 +83,7 @@ class Card {
const Profile& ActiveProfile() const { return active_profile_; }
private:
- friend class Pulse;
+ friend class PulseClient;
uint32_t index_;
string name_;
@@ -110,10 +110,10 @@ struct Range {
T max;
};
-class Pulse {
+class PulseClient {
public:
- Pulse(string client_name);
- ~Pulse();
+ PulseClient(string client_name);
+ ~PulseClient();
// Populates all known devices and cards. Any currently known
// devices and cards are cleared before the new data is stored.