00001 #ifdef CH_LANG_CC 00002 /* 00003 * _______ __ 00004 * / ___/ / ___ __ _ / / ___ 00005 * / /__/ _ \/ _ \/ V \/ _ \/ _ \ 00006 * \___/_//_/\___/_/_/_/_.__/\___/ 00007 * Please refer to Copyright.txt, in Chombo's root directory. 00008 */ 00009 #endif 00010 00011 #ifndef _AMRLEVELFACTORY_H_ 00012 #define _AMRLEVELFACTORY_H_ 00013 00014 #include "AMRLevel.H" 00015 #include "NamespaceHeader.H" 00016 00018 00022 class AMRLevelFactory 00023 { 00024 public: 00026 00031 virtual AMRLevel* new_amrlevel() const = 0; 00032 00033 // to make gcc v4 happy 00034 virtual ~AMRLevelFactory(){} 00035 }; 00036 00037 #include "NamespaceFooter.H" 00038 #endif