Skip to content

Commit

Permalink
GRAPHICS: Mark ImageDecoder as noncopyable
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Oct 23, 2016
1 parent f869793 commit 657055f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/graphics/images/decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

#include <vector>

#include <boost/noncopyable.hpp>

#include "src/common/types.h"

#include "src/graphics/types.h"
Expand All @@ -41,7 +43,7 @@ namespace Common {
namespace Graphics {

/** A generic interface for image decoders. */
class ImageDecoder {
class ImageDecoder : boost::noncopyable {
public:
/** A mip map. */
struct MipMap {
Expand Down

0 comments on commit 657055f

Please sign in to comment.