dali native version check
[platform/core/uifw/dali-csharp-binder.git] / dali-csharp-binder / src / version-check.cpp
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16
17 #include "common.h"
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_NativeVersionCheck(int * ver1, int * ver2, int * ver3 ) {
24   {
25     try {
26       *ver1 = Dali::CORE_MAJOR_VERSION;
27       *ver2 = Dali::CORE_MINOR_VERSION;
28       *ver3 = Dali::CORE_MICRO_VERSION;
29     } catch (std::out_of_range& e) {
30       {
31         SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return false;
32       };
33     } catch (std::exception& e) {
34       {
35         SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return false;
36       };
37     } catch (...) {
38       {
39         SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return false;
40       };
41     }
42   }
43   return true;
44 }
45
46 #ifdef __cplusplus
47 }
48 #endif
49