X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fimage-loader%2Fatlas-upload-observer.h;h=e5322471175aabce325a5ebca9b38b8aca5ca3a2;hp=53d1c0eb31cb7a3c42f9747baeee1b29a87819df;hb=1d82abb8a1a514ce0af63004706135fb7883f89b;hpb=c1b7b114b63facaccd835b602cbd13e7869835a9 diff --git a/dali-toolkit/devel-api/image-loader/atlas-upload-observer.h b/dali-toolkit/devel-api/image-loader/atlas-upload-observer.h index 53d1c0e..e532247 100644 --- a/dali-toolkit/devel-api/image-loader/atlas-upload-observer.h +++ b/dali-toolkit/devel-api/image-loader/atlas-upload-observer.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_ATLAS_UPLOAD_OBSERVER_H /* - * Copyright (c) 2018 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -22,13 +22,10 @@ #include #include - namespace Dali { - namespace Toolkit { - namespace Internal { class ImageAtlas; @@ -42,7 +39,6 @@ class ImageAtlas; class DALI_TOOLKIT_API AtlasUploadObserver { public: - /** * @brief Constructor. */ @@ -59,23 +55,20 @@ public: virtual void UploadCompleted() = 0; public: // not intended for developer, called by ImageAtlas internally to get notified when this observer dies - /** * @brief Register an ImageAtlas which be notified when the observer is destructing. * @param[in] imageAtlas The ImageAtlas object to get notification about the destruction of the observer. */ - void Register( Internal::ImageAtlas& imageAtlas ); + void Register(Internal::ImageAtlas& imageAtlas); /** * @brief Unregister an ImageAtlas which be notified when the observer is destructing. * @param[in] imageAtlas The ImageAtlas object to get notification about the destruction of the observer. */ - void Unregister( Internal::ImageAtlas& imageAtlas ); + void Unregister(Internal::ImageAtlas& imageAtlas); private: - Vector mAtlasList; ///< The list of the registered ImageAtlas object - }; } // namespace Toolkit