00001 // Wild Magic Source Code 00002 // David Eberly 00003 // http://www.geometrictools.com 00004 // Copyright (c) 1998-2007 00005 // 00006 // This library is free software; you can redistribute it and/or modify it 00007 // under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation; either version 2.1 of the License, or (at 00009 // your option) any later version. The license is available for reading at 00010 // either of the locations: 00011 // http://www.gnu.org/copyleft/lgpl.html 00012 // http://www.geometrictools.com/License/WildMagicLicense.pdf 00013 // The license applies to versions 0 through 4 of Wild Magic. 00014 // 00015 // Version: 4.0.0 (2006/06/28) 00016 00017 #ifndef WM4QUERY_H 00018 #define WM4QUERY_H 00019 00020 #include "Wm4FoundationLIB.h" 00021 00022 namespace Wm4 00023 { 00024 00025 class Query 00026 { 00027 public: 00028 // abstract base class 00029 virtual ~Query (); 00030 00031 // run-time type information 00032 enum Type 00033 { 00034 QT_INT64, 00035 QT_INTEGER, 00036 QT_RATIONAL, 00037 QT_REAL, 00038 QT_FILTERED 00039 }; 00040 00041 virtual Type GetType () const = 0; 00042 00043 protected: 00044 Query (); 00045 }; 00046 00047 } 00048 00049 #include "Wm4Query.inl" 00050 00051 #endif