pcm/PcmDsd: make attributes private

This commit is contained in:
Max Kellermann 2013-11-29 22:05:29 +01:00
parent 1a002eb23d
commit abeebfe070

View File

@ -28,11 +28,12 @@
/** /**
* Wrapper for the dsd2pcm library. * Wrapper for the dsd2pcm library.
*/ */
struct PcmDsd { class PcmDsd {
PcmBuffer buffer; PcmBuffer buffer;
struct dsd2pcm_ctx_s *dsd2pcm[32]; struct dsd2pcm_ctx_s *dsd2pcm[32];
public:
PcmDsd(); PcmDsd();
~PcmDsd(); ~PcmDsd();