Merge "DALi Version 1.9.7" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / asset-manager / asset-manager.h
1 #ifndef DALI_TOOLKIT_ASSET_MANAGER_DEVEL_H
2 #define DALI_TOOLKIT_ASSET_MANAGER_DEVEL_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string>
23
24 // INTERNAL INCLUDES
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 /**
33  * @brief Retrieves the file system path of the assets.
34  */
35 class AssetManager
36 {
37 public:
38   /**
39    * @return The file system path of the images.
40    */
41   static const std::string GetDaliImagePath();
42
43   /**
44    * @return The file system path of the sounds.
45    */
46   static const std::string GetDaliSoundPath();
47
48   /**
49    * @return The file system path of the styles.
50    */
51   static const std::string GetDaliStylePath();
52
53   /**
54    * @return The file system path of the images in the styles.
55    */
56   static const std::string GetDaliStyleImagePath();
57
58   /**
59    * @return The file system path of the DALi's read only data.
60    */
61   static const std::string GetDaliDataReadOnlyPath();
62 };
63
64 } // Toolkit
65
66 } // Dali
67
68
69 #endif // DALI_TOOLKIT_ASSET_MANAGER_DEVEL_H
70