Modify doxygen group names
[platform/core/uifw/dali-core.git] / dali / public-api / math / uint-16-pair.h
index 649494b..5e6b41c 100644 (file)
 
 // INTERNAL INCLUDES
 #include <dali/public-api/common/dali-common.h>
+#include <dali/public-api/common/type-traits.h>
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_math
+ * @{
+ */
 
 /**
  * @brief Simple class for passing around pairs of small unsigned integers.
@@ -177,6 +182,12 @@ private:
   };
 };
 
+// Allow Uint16Pair to be treated as a POD type
+template <> struct TypeTraits< Uint16Pair > : public BasicTypes< Uint16Pair > { enum { IS_TRIVIAL_TYPE = true }; };
+
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // __DALI_UINT_16_PAIR_H__