made "serialize" const

This commit is contained in:
badaix 2015-07-26 13:06:21 +02:00
parent 56389ad202
commit b936bffeff
11 changed files with 104 additions and 73 deletions

View file

@ -32,6 +32,11 @@ PcmChunk::PcmChunk(const SampleFormat& sampleFormat, size_t ms) : WireChunk(samp
}
PcmChunk::PcmChunk(const PcmChunk& pcmChunk) : WireChunk(pcmChunk), format(pcmChunk.format), idx(0)
{
}
PcmChunk::PcmChunk() : WireChunk(), idx(0)
{
}