summaryrefslogtreecommitdiff
path: root/slideshow/source/inc/animation.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-01 18:53:50 +0200
committerNoel Grandin <noel@peralex.com>2016-02-24 09:37:56 +0200
commitf29c0b2b3e8861909fa2c6c37bf631ab01590541 (patch)
tree079aa9796ede8518a6b290f1184f25ac171173c0 /slideshow/source/inc/animation.hxx
parent1b6a84a5a24e7e02c6066ca0fcb5a0011d2decd6 (diff)
boost::shared_ptr->std::shared_ptr in slideshow
Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6
Diffstat (limited to 'slideshow/source/inc/animation.hxx')
-rw-r--r--slideshow/source/inc/animation.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/slideshow/source/inc/animation.hxx b/slideshow/source/inc/animation.hxx
index 8f9e613b148f..9108b72101d6 100644
--- a/slideshow/source/inc/animation.hxx
+++ b/slideshow/source/inc/animation.hxx
@@ -22,6 +22,7 @@
#include <animatableshape.hxx>
#include <shapeattributelayer.hxx>
+#include <disposable.hxx>
/* Definition of Animation interface */
@@ -43,7 +44,7 @@ namespace slideshow
@see ColorAnimation
@see PairAnimation
*/
- class Animation
+ class Animation : public virtual SharedPtrAble
{
public:
virtual ~Animation() {}
@@ -81,7 +82,7 @@ namespace slideshow
virtual void end() = 0;
};
- typedef ::boost::shared_ptr< Animation > AnimationSharedPtr;
+ typedef ::std::shared_ptr< Animation > AnimationSharedPtr;
}
}