diff options
author | Max Kellermann <max@duempel.org> | 2013-11-29 22:05:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-29 22:05:29 +0100 |
commit | abeebfe0700fb170e7d33288a2b7ce5e1fa700a1 (patch) | |
tree | 75d1f6269798aef4d2bcc0b43d286797fa30da5a /src | |
parent | 1a002eb23dd2843f463ccad7b17cc0637a82566c (diff) | |
download | mpd-abeebfe0700fb170e7d33288a2b7ce5e1fa700a1.tar.gz mpd-abeebfe0700fb170e7d33288a2b7ce5e1fa700a1.tar.xz mpd-abeebfe0700fb170e7d33288a2b7ce5e1fa700a1.zip |
pcm/PcmDsd: make attributes private
Diffstat (limited to '')
-rw-r--r-- | src/pcm/PcmDsd.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pcm/PcmDsd.hxx b/src/pcm/PcmDsd.hxx index 26ee11b13..d807f8570 100644 --- a/src/pcm/PcmDsd.hxx +++ b/src/pcm/PcmDsd.hxx @@ -28,11 +28,12 @@ /** * Wrapper for the dsd2pcm library. */ -struct PcmDsd { +class PcmDsd { PcmBuffer buffer; struct dsd2pcm_ctx_s *dsd2pcm[32]; +public: PcmDsd(); ~PcmDsd(); |