summaryrefslogtreecommitdiff
path: root/slideshow/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-07-26 06:32:46 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-07-26 06:32:46 +0000
commit256fe1926ec5aeb46e48ecffab7087ac233e9b5d (patch)
treef864f85167e1bc131f22aabf6a6ec813beb43f76 /slideshow/source
parent4056d8ecc3bfbf99865b5ef3a53e5544b6196e81 (diff)
INTEGRATION: CWS presfixes10 (1.4.8); FILE MERGED
2005/11/07 15:26:50 dbo 1.4.8.1: #i45197# revised code Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'slideshow/source')
-rw-r--r--slideshow/source/engine/animationnodes/animationsetnode.hxx50
1 files changed, 24 insertions, 26 deletions
diff --git a/slideshow/source/engine/animationnodes/animationsetnode.hxx b/slideshow/source/engine/animationnodes/animationsetnode.hxx
index 392129ac2606..51ac7b6b0b74 100644
--- a/slideshow/source/engine/animationnodes/animationsetnode.hxx
+++ b/slideshow/source/engine/animationnodes/animationsetnode.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: animationsetnode.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 20:42:11 $
+ * last change: $Author: rt $ $Date: 2006-07-26 07:32:46 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -32,37 +32,35 @@
* MA 02111-1307 USA
*
************************************************************************/
+#ifndef INCLUDED_SLIDESHOW_ANIMATIONSETNODE_HXX
+#define INCLUDED_SLIDESHOW_ANIMATIONSETNODE_HXX
-#ifndef _SLIDESHOW_ANIMATIONSETNODE_HXX
-#define _SLIDESHOW_ANIMATIONSETNODE_HXX
+#include "animationbasenode.hxx"
-#include <activityanimationbasenode.hxx>
+namespace presentation {
+namespace internal {
-namespace presentation
+class AnimationSetNode : public AnimationBaseNode
{
- namespace internal
- {
- class AnimationSetNode : public ActivityAnimationBaseNode
- {
- public:
- AnimationSetNode( const ::com::sun::star::uno::Reference<
- ::com::sun::star::animations::XAnimationNode >& xNode,
- const BaseContainerNodeSharedPtr& rParent,
- const NodeContext& rContext );
-
- virtual bool init();
+public:
+ AnimationSetNode(
+ ::com::sun::star::uno::Reference<
+ ::com::sun::star::animations::XAnimationNode> const& xNode,
+ ::boost::shared_ptr<BaseContainerNode> const& pParent,
+ NodeContext const& rContext )
+ : AnimationBaseNode( xNode, pParent, rContext ) {}
#if defined(VERBOSE) && defined(DBG_UTIL)
- virtual const char* getDescription() const;
+ virtual const char* getDescription() const { return "AnimationSetNode"; }
#endif
- private:
- void implScheduleDeactivationEvent() const;
- AnimationActivitySharedPtr createSetActivity();
- };
+private:
+ virtual AnimationActivitySharedPtr createActivity() const;
+ void implScheduleDeactivationEvent();
+};
+
+} // namespace internal
+} // namespace presentation
- typedef ::boost::shared_ptr< AnimationSetNode > AnimationSetNodeSharedPtr;
- }
-}
+#endif /* INCLUDED_SLIDESHOW_ANIMATIONSETNODE_HXX */
-#endif /* _SLIDESHOW_ANIMATIONSETNODE_HXX */