Add AllowTextPrediction/IsTextPredictionAllowed api
[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) 2018 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 // INTERNAL INCLUDES
21 #include <dali/public-api/dali-adaptor-common.h>
22
23 namespace Dali
24 {
25
26 namespace EnvironmentVariable
27 {
28
29 /**
30  * @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.
31  *
32  * @param[in] variable Null-terminated character string identifying the name of the environmental variable to look for.
33  * @return A C-string containing the value of the specified environment variable.
34  */
35 DALI_ADAPTOR_API const char * GetEnvironmentVariable( const char * variable );
36
37 } // namespace EnvironmentVariable
38
39 } // namespace Dali
40
41 #endif /*__DALI_ ENVIRONMENT_VARIABLE_H__ */