hint.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2008-08-14
00005 // Updated : 2008-08-14
00006 // Licence : This source is under MIT License
00007 // File    : glm/core/hint.hpp
00009 
00010 #ifndef glm_core_type
00011 #define glm_core_type
00012 
00013 namespace glm
00014 {
00015         // Use dont_care, nicest and fastest to optimize implementations.
00016         class dont_care {};
00017         class nicest {};
00018         class fastest {};
00019 };
00020 
00021 #endif//glm_core_type