Removing deprecated API's 23/25923/3
authorLee Morgan <Lee.morgan@partner.samsung.com>
Tue, 12 Aug 2014 12:38:45 +0000 (13:38 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Wed, 13 Aug 2014 10:20:11 +0000 (03:20 -0700)
Change-Id: Ic131caa8add676db949996c5fdc3e8a2ea66e33d
Signed-off-by: Lee Morgan <Lee.morgan@partner.samsung.com>
dali/public-api/modeling/model-data.cpp
dali/public-api/modeling/model-data.h

index 2f65cb8..b333bc4 100644 (file)
@@ -126,16 +126,6 @@ ModelAnimationMapContainer& ModelData::GetAnimationMapContainer()
   return GetImplementation(*this).GetAnimationMapContainer();
 }
 
-const ModelAnimationMap* ModelData::GetAnimationMap (unsigned int index) const
-{
-  return GetImplementation(*this).GetAnimationMap(index);
-}
-
-const ModelAnimationMap* ModelData::GetAnimationMap (const std::string& name) const
-{
-  return GetImplementation(*this).GetAnimationMap(name);
-}
-
 bool ModelData::FindAnimation (const std::string& name, unsigned int& index) const
 {
   return GetImplementation(*this).FindAnimation(name, index);
index d8540bc..d9ff110 100644 (file)
@@ -186,24 +186,6 @@ public:
    ModelAnimationMapContainer& GetAnimationMapContainer();
 
   /**
-   * @brief Get an animation map from the model data.
-   *
-   * @deprecated Use ModelActorFactory to generate animations
-   * @param[in] index The index of the animation map.
-   * @return a pointer to model animation map.
-   */
-  const ModelAnimationMap* GetAnimationMap (unsigned int index) const;
-
-  /**
-   * @brief Get the animation for the given name.
-   *
-   * @deprecated Use ModelActorFactory to generate animations
-   * @param[in] name The name of an animation map to search for.
-   * @return a pointer to model animation map.
-   */
-  const ModelAnimationMap* GetAnimationMap (const std::string& name) const;
-
-  /**
    * @brief Find the index for the given animation name.
    *
    * @param[in] name The name of the animation map to search for.