DALi Version 2.0.9
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / dali-toolkit-version.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // HEADER
19 #include <dali-toolkit/public-api/dali-toolkit-version.h>
20
21 // EXTERNAL INCLUDES
22 #ifdef DEBUG_ENABLED
23 #include <iostream>
24 #endif
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 const unsigned int TOOLKIT_MAJOR_VERSION = 2;
31 const unsigned int TOOLKIT_MINOR_VERSION = 0;
32 const unsigned int TOOLKIT_MICRO_VERSION = 9;
33 const char* const  TOOLKIT_BUILD_DATE    = __DATE__ " " __TIME__;
34
35 #ifdef DEBUG_ENABLED
36 namespace
37 {
38 /// Allows the printing of the version number ONLY when debug is enabled
39 struct PrintVersion
40 {
41   PrintVersion()
42   {
43     std::cerr << "DALi Toolkit:   " << TOOLKIT_MAJOR_VERSION << "." << TOOLKIT_MINOR_VERSION << "." << TOOLKIT_MICRO_VERSION << " (" << TOOLKIT_BUILD_DATE << ")" << std::endl;
44   }
45 };
46 PrintVersion TOOLKIT_VERSION;
47 } // unnamed namespace
48 #endif
49
50 } // namespace Toolkit
51
52 } // namespace Dali