cc78eff2a65b53dd4ae68814833c28fadff39047
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / dali-toolkit-version.cpp
1 /*
2  * Copyright (c) 2017 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
29 namespace Toolkit
30 {
31
32 const unsigned int TOOLKIT_MAJOR_VERSION = 1;
33 const unsigned int TOOLKIT_MINOR_VERSION = 2;
34 const unsigned int TOOLKIT_MICRO_VERSION = 57;
35 const char * const TOOLKIT_BUILD_DATE    = __DATE__ " " __TIME__;
36
37 #ifdef DEBUG_ENABLED
38 namespace
39 {
40 /// Allows the printing of the version number ONLY when debug is enabled
41 struct PrintVersion
42 {
43   PrintVersion()
44   {
45     std::cerr << "DALi Toolkit:   " << TOOLKIT_MAJOR_VERSION << "." << TOOLKIT_MINOR_VERSION << "." << TOOLKIT_MICRO_VERSION << " (" << TOOLKIT_BUILD_DATE << ")" << std::endl;
46   }
47 };
48 PrintVersion TOOLKIT_VERSION;
49 } // unnamed namespace
50 #endif
51
52 } // namespace Toolkit
53
54 } // namespace Dali