summaryrefslogtreecommitdiff
path: root/include/canvas/spriteredrawmanager.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-28 16:14:12 +0200
committerNoel Grandin <noel@peralex.com>2015-10-29 08:51:55 +0200
commit5d5c4686badbf67aa25b18701f25d90fa8b4e42a (patch)
tree39d10e1f40b12ee20c50d5eed313d46df054783d /include/canvas/spriteredrawmanager.hxx
parentfbff75a64c7449aac85d640f67b1de147db35c3e (diff)
remove boost::noncopyable from /include
Change-Id: I9fa22b06fabf79043ebc68be7afebc6e810f4db1
Diffstat (limited to 'include/canvas/spriteredrawmanager.hxx')
-rw-r--r--include/canvas/spriteredrawmanager.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/canvas/spriteredrawmanager.hxx b/include/canvas/spriteredrawmanager.hxx
index e34d127b2836..7a35527f3fc6 100644
--- a/include/canvas/spriteredrawmanager.hxx
+++ b/include/canvas/spriteredrawmanager.hxx
@@ -32,8 +32,6 @@
#include <vector>
#include <algorithm>
-#include <boost/noncopyable.hpp>
-
#include <canvas/canvastoolsdllapi.h>
/* Definition of SpriteRedrawManager class */
@@ -58,7 +56,7 @@ namespace canvas
there) will reside in a common sprite area and handled
together in the forEachSpriteArea functor call.
*/
- class CANVASTOOLS_DLLPUBLIC SpriteRedrawManager : private ::boost::noncopyable
+ class CANVASTOOLS_DLLPUBLIC SpriteRedrawManager
{
public:
/** Data container for the connected components list
@@ -195,6 +193,8 @@ namespace canvas
typedef ::std::vector< Sprite::Reference > VectorOfSprites;
SpriteRedrawManager();
+ SpriteRedrawManager(const SpriteRedrawManager&) = delete;
+ SpriteRedrawManager& operator=( const SpriteRedrawManager& ) = delete;
/** Must be called when user of this object gets
disposed. Frees all internal references.