Modify doxygen group names
[platform/core/uifw/dali-core.git] / dali / public-api / math / uint-16-pair.h
index 609132a..5e6b41c 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_UINT_16_PAIR_H__
 
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2015 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.
 
 // 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__