Skip to content

Commit

Permalink
SOUND: Mark Codec as noncopyable
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Oct 23, 2016
1 parent b2fc22c commit 2a32d4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sound/decoders/codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#ifndef SOUND_DECODERS_CODEC_H
#define SOUND_DECODERS_CODEC_H

#include <boost/noncopyable.hpp>

namespace Common {
class SeekableReadStream;
}
Expand All @@ -33,7 +35,7 @@ namespace Sound {

class AudioStream;

class Codec {
class Codec : boost::noncopyable {
public:
Codec();
virtual ~Codec();
Expand Down

0 comments on commit 2a32d4b

Please sign in to comment.