*
* @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:
* @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.
* @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.
* @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