00001 // OPENDAP_TYPE_commands.cc 00002 00003 // 2004 Copyright University Corporation for Atmospheric Research 00004 00005 #include <iostream> 00006 00007 using std::endl ; 00008 00009 #include "BESInitList.h" 00010 #include "BESInitOrder.h" 00011 #include "BESCommand.h" 00012 #include "BESLog.h" 00013 #include "BESResponseNames.h" 00014 #include "OPENDAP_CLASSResponseNames.h" 00015 00016 static bool 00017 OPENDAP_CLASSCmdInit(int, char**) 00018 { 00019 if( BESLog::TheLog()->is_verbose() ) 00020 (*BESLog::TheLog()) << "Initializing OPENDAP_CLASS Commands:" << endl ; 00021 00022 string cmd_name ; 00023 00024 return true ; 00025 } 00026 00027 static bool 00028 OPENDAP_CLASSCmdTerm(void) 00029 { 00030 return true ; 00031 } 00032 00033 FUNINITQUIT( OPENDAP_CLASSCmdInit, OPENDAP_CLASSCmdTerm, BESMODULE_INIT ) ; 00034