Updated all header files to new format
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / transition-effects / cube-transition-fold-effect-impl.h
index 307ecfa..625ce86 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_FOLD_EFFECT_H
 
 /*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 namespace Dali
 {
-
 namespace Toolkit
 {
-
 class CubeTransitionFoldEffect;
 
 namespace Internal
 {
-
 class CubeTransitionEffect;
 
 class CubeTransitionFoldEffect : public CubeTransitionEffect
 {
-
 public:
-
   /**
    * @copydoc Toolkit::CubeTransitionFoldEffect::New
    */
-  static Toolkit::CubeTransitionFoldEffect New( unsigned int numRows, unsigned int numColumns );
+  static Toolkit::CubeTransitionFoldEffect New(unsigned int numRows, unsigned int numColumns);
 
 protected:
-
-   /**
+  /**
     * @copydoc Toolkit::CubeTransitionEffect::OnInitialize
     */
-   void OnInitialize() override;
+  void OnInitialize() override;
 
-   /**
+  /**
     * @copydoc Toolkit::CubeTransitionEffect::OnStartTransition
     */
-   void OnStartTransition( Vector2 panPosition, Vector2 panDisplacement ) override;
+  void OnStartTransition(Vector2 panPosition, Vector2 panDisplacement) override;
 
 private:
-
-   /**
+  /**
     * Construct a new CubeTransitionFoldEffect object
     * @param[in] numRows How many rows of cubes
     * @param[in] numColumns How many columns of cubes
     */
-   CubeTransitionFoldEffect( unsigned int numRows, unsigned int numColumns );
+  CubeTransitionFoldEffect(unsigned int numRows, unsigned int numColumns);
 
-   /**
+  /**
     * Set up animation to an Actor
     * @param[in] actorIndex The index of the cube in the cube array
     * @param[in] angle The angle of the rotation animation
     */
-   void SetupAnimation( unsigned int actorIndex, unsigned int x, float angle );
+  void SetupAnimation(unsigned int actorIndex, unsigned int x, float angle);
 
 }; //class CubeTransitionFoldEffect
 
@@ -81,22 +74,22 @@ private:
 
 // Helpers for public-api forwarding methods
 
-inline Internal::CubeTransitionFoldEffect& GetImpl( Dali::Toolkit::CubeTransitionFoldEffect& obj )
+inline Internal::CubeTransitionFoldEffect& GetImpl(Dali::Toolkit::CubeTransitionFoldEffect& obj)
 {
-  DALI_ASSERT_ALWAYS( obj );
+  DALI_ASSERT_ALWAYS(obj);
 
   Dali::RefObject& handle = obj.GetImplementation();
 
-  return static_cast< Internal::CubeTransitionFoldEffect& >( handle );
+  return static_cast<Internal::CubeTransitionFoldEffect&>(handle);
 }
 
-inline const Internal::CubeTransitionFoldEffect& GetImpl( const Dali::Toolkit::CubeTransitionFoldEffect& obj )
+inline const Internal::CubeTransitionFoldEffect& GetImpl(const Dali::Toolkit::CubeTransitionFoldEffect& obj)
 {
-  DALI_ASSERT_ALWAYS( obj );
+  DALI_ASSERT_ALWAYS(obj);
 
   const Dali::RefObject& handle = obj.GetImplementation();
 
-  return static_cast< const Internal::CubeTransitionFoldEffect& >( handle );
+  return static_cast<const Internal::CubeTransitionFoldEffect&>(handle);
 }
 
 } // namespace Toolkit