X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Factors%2Fcustom-actor-impl.h;h=f4cc9fef5c2a833637292f588b6ce118433c1a54;hb=646f736e77b085c86e982c0d1d4b895c2a431330;hp=331d5aee5c4eaa2c04d6ad410698550ec453562d;hpb=da2e24f853c2f463df2f4b743c3b2241a537cefd;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/actors/custom-actor-impl.h b/dali/public-api/actors/custom-actor-impl.h index 331d5ae..f4cc9fe 100644 --- a/dali/public-api/actors/custom-actor-impl.h +++ b/dali/public-api/actors/custom-actor-impl.h @@ -2,7 +2,7 @@ #define __DALI_CUSTOM_ACTOR_IMPL_H__ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 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. @@ -18,6 +18,9 @@ * */ +// EXTERNAL INCLUDES +#include // uint32_t + // INTERNAL INCLUDES #include #include @@ -61,7 +64,7 @@ typedef IntrusivePtr CustomActorImplPtr; * And CustomActorImpl is typically owned by a single CustomActor instance; see also CustomActor::CustomActor( CustomActorImpl &implementation ). * @SINCE_1_0.0 */ -class DALI_IMPORT_API CustomActorImpl : public Dali::RefObject +class DALI_CORE_API CustomActorImpl : public Dali::RefObject { public: @@ -106,7 +109,7 @@ public: * @endcode * @param[in] depth The depth in the hierarchy for the actor */ - virtual void OnStageConnection( int depth ) = 0; + virtual void OnStageConnection( int32_t depth ) = 0; /** * @brief Called after the actor has been disconnected from Stage. @@ -337,7 +340,7 @@ protected: // For derived classes LAST_ACTOR_FLAG ///< Special marker for last actor flag @SINCE_1_0.0 }; - static const int ACTOR_FLAG_COUNT = Log< LAST_ACTOR_FLAG - 1 >::value + 1; ///< Value for deriving classes to continue on the flag enum + static const int32_t ACTOR_FLAG_COUNT = Log< LAST_ACTOR_FLAG - 1 >::value + 1; ///< Value for deriving classes to continue on the flag enum /** * @brief Creates a CustomActorImpl.