--- /dev/null
+#ifndef __DALI_COMPILE_TIME_ASSERT_H__
+#define __DALI_COMPILE_TIME_ASSERT_H__
+
+/*
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// INTERNAL INCLUDES
+#include <dali/public-api/common/dali-common.h>
+
+// EXTERNAL INCLUDES
+#include <cstddef>
+
+namespace Dali
+{
+
+template <bool x> struct CompileTimeAssertBool; ///< Bool Template to test condition
+template <> struct CompileTimeAssertBool<true> {}; ///< Specialize for true, but not for false
+
+template<int x> struct CompileTimeAssertInt {}; ///< Template to wrap conditional template CompileTimeAsserBool
+
+/**
+ * @brief Use DALI_COMPILE_TIME_ASSERT to test expressions at compile time.
+ *
+ * If x is false, then 'sizeof' will be attempted with incomplete type.
+ */
+#define DALI_COMPILE_TIME_ASSERT( x ) typedef CompileTimeAssertInt< sizeof( CompileTimeAssertBool< ( x ) > ) > CompileTimeAssertType __attribute__((__unused__))
+
+} // namespace Dali
+
+#endif // __DALI_COMPILE_TIME_ASSERT_H__
#include <dali/public-api/animation/key-frames.h>
#include <dali/public-api/animation/time-period.h>
+#include <dali/public-api/common/compile-time-assert.h>
#include <dali/public-api/common/constants.h>
#include <dali/public-api/common/dali-common.h>
#include <dali/public-api/common/dali-vector.h>
#include <dali/public-api/images/pixel.h>
#include <dali/public-api/math/angle-axis.h>
-#include <dali/public-api/math/compile-time-assert.h>
#include <dali/public-api/math/compile-time-math.h>
#include <dali/public-api/math/degree.h>
#include <dali/public-api/math/math-utils.h>
$(public_api_src_dir)/animation/time-period.h
public_api_core_common_header_files = \
+ $(public_api_src_dir)/common/compile-time-assert.h \
$(public_api_src_dir)/common/constants.h \
$(public_api_src_dir)/common/dali-common.h \
$(public_api_src_dir)/common/dali-vector.h \
public_api_core_math_header_files = \
$(public_api_src_dir)/math/angle-axis.h \
- $(public_api_src_dir)/math/compile-time-assert.h \
$(public_api_src_dir)/math/compile-time-math.h \
$(public_api_src_dir)/math/degree.h \
$(public_api_src_dir)/math/math-utils.h \
+++ /dev/null
-#ifndef __DALI_COMPILE_TIME_ASSERT_H__
-#define __DALI_COMPILE_TIME_ASSERT_H__
-
-/*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-// INTERNAL INCLUDES
-#include <dali/public-api/common/dali-common.h>
-
-// EXTERNAL INCLUDES
-#include <cstddef>
-
-namespace Dali
-{
-
-template <bool x> struct CompileTimeAssertBool; ///< Bool Template to test condition
-template <> struct CompileTimeAssertBool<true> {}; ///< Specialize for true, but not for false
-
-template<int x> struct CompileTimeAssertInt {}; ///< Template to wrap conditional template CompileTimeAsserBool
-
-/**
- * @brief Use DALI_COMPILE_TIME_ASSERT to test expressions at compile time.
- *
- * If x is false, then 'sizeof' will be attempted with incomplete type.
- */
-#define DALI_COMPILE_TIME_ASSERT( x ) typedef CompileTimeAssertInt< sizeof( CompileTimeAssertBool< ( x ) > ) > CompileTimeAssertType __attribute__((__unused__))
-
-} // namespace Dali
-
-#endif // __DALI_COMPILE_TIME_ASSERT_H__
#include <dali/public-api/math/compile-time-math.h>
// INTERNAL INCLUDES
-#include <dali/public-api/math/compile-time-assert.h>
+#include <dali/public-api/common/compile-time-assert.h>
namespace Dali
{
// CLASS HEADER
#include <dali/public-api/signals/functor-delegate.h>
-#include <dali/public-api/math/compile-time-assert.h>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/common/compile-time-assert.h>
namespace Dali
{