Remove unused constants, don't export constant that have fixed values
[platform/core/uifw/dali-core.git] / dali / public-api / common / constants.cpp
1 /*
2  * Copyright (c) 2014 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 // CLASS HEADER
19 #include <dali/public-api/common/constants.h>
20
21 // EXTERNAL INCLUDES
22 #include <string>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/math/compile-time-math.h>
26 #include <dali/public-api/math/degree.h>
27
28 namespace Dali
29 {
30
31 // epsilon constants
32 const float Math::MACHINE_EPSILON_0     = Epsilon<0>::value;
33 const float Math::MACHINE_EPSILON_1     = Epsilon<1>::value;
34 const float Math::MACHINE_EPSILON_10    = Epsilon<10>::value;
35 const float Math::MACHINE_EPSILON_100   = Epsilon<100>::value;
36 const float Math::MACHINE_EPSILON_1000  = Epsilon<1000>::value;
37 const float Math::MACHINE_EPSILON_10000 = Epsilon<10000>::value;
38
39 const std::string String::EMPTY("");
40
41 } // namespace Dali