00001 //************************************************************************************ 00002 // Module : gbasispool.hpp 00003 // Date : 7/26/05 (DLR) 00004 // Copyright : 2005-2006 Copyright University Corporation for Atmospheric 00005 // Research 00006 // Description : Base class for the GBasisPool classes. 00007 // Derived From : GObjList. 00008 // Modifications: 00009 //************************************************************************************ 00010 #if !defined(GBASISPOOL_HPP) 00011 #define GBASISPOOL_HPP 00012 00013 #include "gtypes.h" 00014 #include <iostream.h> 00015 #include <stdlib.h> 00016 #include "gobjlist.hpp" 00017 00018 00019 class GBasisPool 00020 { 00021 00022 public: 00023 GBasisPool(); 00024 ~GBasisPool(); 00025 00026 virtual GBOOL findorder(GINT order) = 0; 00027 00028 private: 00029 00030 }; 00031 #endif 00032