TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
EqualsTrait.h
Go to the documentation of this file.
1 
11 #ifndef G3D_EQUALSTRAIT_H
12 #define G3D_EQUALSTRAIT_H
13 
14 #include "G3D/platform.h"
15 
19 template<typename Key> struct EqualsTrait {
20  static bool equals(const Key& a, const Key& b) {
21  return a == b;
22  }
23 };
24 
25 #endif
26 
static bool equals(const Key &a, const Key &b)
Definition: EqualsTrait.h:20
Definition: EqualsTrait.h:19