diff options
Diffstat (limited to 'dep/g3dlite/include/G3D/WrapMode.h')
-rw-r--r-- | dep/g3dlite/include/G3D/WrapMode.h | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/dep/g3dlite/include/G3D/WrapMode.h b/dep/g3dlite/include/G3D/WrapMode.h index 25a2fb47256..e71d6dfa621 100644 --- a/dep/g3dlite/include/G3D/WrapMode.h +++ b/dep/g3dlite/include/G3D/WrapMode.h @@ -1,12 +1,12 @@ /** - @file WrapMode.h + \file G3D/WrapMode.h - @maintainer Morgan McGuire, http://graphics.cs.williams.edu + \maintainer Morgan McGuire, http://graphics.cs.williams.edu - @created 2007-04-17 - @edited 2010-04-17 + \created 2007-04-17 + \edited 2010-04-17 - Copyright 2000-2010, Morgan McGuire. + Copyright 2000-2012, Morgan McGuire. All rights reserved. */ @@ -15,7 +15,6 @@ #include "G3D/platform.h" #include "G3D/enumclass.h" -#include "G3D/Any.h" #ifdef IGNORE # undef IGNORE @@ -62,9 +61,7 @@ public: ZERO, IGNORE, ERROR - }; - -private: + } value; static const char* toString(int i, Value& v) { static const char* str[] = {"CLAMP", "TILE", "ZERO", "IGNORE", "ERROR", NULL}; @@ -76,14 +73,11 @@ private: return s; } - Value value; - -public: G3D_DECLARE_ENUM_CLASS_METHODS(WrapMode); - }; + } // namespace G3D G3D_DECLARE_ENUM_CLASS_HASHCODE(G3D::WrapMode); |