Skip to content

Commit

Permalink
VIDEO: 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 2a32d4b commit 6eae98b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/video/codecs/codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#ifndef VIDEO_CODECS_CODEC_H
#define VIDEO_CODECS_CODEC_H

#include <boost/noncopyable.hpp>

namespace Common {
class SeekableReadStream;
}
Expand All @@ -35,7 +37,7 @@ namespace Graphics {

namespace Video {

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

0 comments on commit 6eae98b

Please sign in to comment.