From: Andrew Cox Date: Thu, 18 Jun 2015 13:56:57 +0000 (+0100) Subject: Stop unnecessarily exporting ImageAttributes X-Git-Tag: dali_1.0.46~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c32c781c44eeae0fa5c1de1417b656f69049f6c8;p=platform%2Fcore%2Fuifw%2Fdali-core.git Stop unnecessarily exporting ImageAttributes Change-Id: Ifc37aab6819329e1ae9226a2d3a7621bc2babb2f Signed-off-by: Andrew Cox --- diff --git a/dali/internal/common/image-attributes.h b/dali/internal/common/image-attributes.h index 33aa75b..a0803cb 100644 --- a/dali/internal/common/image-attributes.h +++ b/dali/internal/common/image-attributes.h @@ -67,7 +67,7 @@ namespace Internal * * @note The aspect ratio of image contents is preserved by all scaling modes, so for example squares in input images stay square after loading. */ -class DALI_IMPORT_API ImageAttributes +class ImageAttributes { public: @@ -286,7 +286,7 @@ private: * @param [in] b parameter tested * @return true if a is less than b */ -DALI_IMPORT_API bool operator<(const ImageAttributes& a, const ImageAttributes& b); +bool operator<(const ImageAttributes& a, const ImageAttributes& b); /** * @brief Equal to comparison operator. @@ -295,7 +295,7 @@ DALI_IMPORT_API bool operator<(const ImageAttributes& a, const ImageAttributes& * @param [in] b parameter tested for equality * @return true if a is equal to b */ -DALI_IMPORT_API bool operator==(const ImageAttributes& a, const ImageAttributes& b); +bool operator==(const ImageAttributes& a, const ImageAttributes& b); /** * @brief Not equal to comparison operator. @@ -304,7 +304,7 @@ DALI_IMPORT_API bool operator==(const ImageAttributes& a, const ImageAttributes& * @param [in] b parameter tested for equality * @return true if a is not equal to b */ -DALI_IMPORT_API bool operator!=(const ImageAttributes& a, const ImageAttributes& b); +bool operator!=(const ImageAttributes& a, const ImageAttributes& b); } // namespace Internal } // namespace Dali