96b0c4aa22bb7fd145d2676f9f466a010528748c
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / environment-variable.h
1 #ifndef __DALI_ENVIRONMENT_VARIABLE_H__
2 #define __DALI_ENVIRONMENT_VARIABLE_H__
3
4 /*
5  * Copyright (c) 2015 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 #include <dali/public-api/common/dali-common.h>
21
22 namespace Dali
23 {
24
25 namespace EnvironmentVariable
26 {
27
28 /**
29  * @brief Search the environment list for the specified variable name and return a pointer to the C string that is associated with the matched environment list member.
30  *
31  * @param[in] variable Null-terminated character string identifying the name of the environmental variable to look for.
32  * @return A C-string containing the value of the specified environment variable.
33  */
34 DALI_IMPORT_API const char * GetEnvironmentVariable( const char * variable );
35
36 } // namespace EnvironmentVariable
37
38 } // namespace Dali
39
40 #endif /*__DALI_ ENVIRONMENT_VARIABLE_H__ */