Definition in file history.h.
Go to the source code of this file.
Data Structures | |
class | MidasHistoryInterface |
Functions | |
MidasHistoryInterface * | MakeMidasHistory () |
MidasHistoryInterface * | MakeMidasHistoryODBC () |
MidasHistoryInterface * | MakeMidasHistorySqlDebug () |
MidasHistoryInterface* MakeMidasHistory | ( | ) |
Definition at line 1144 of file history_midas.cxx.
Referenced by set_history_path().
01145 { 01146 // midas history is a singleton class 01147 static MidasHistory* gh = NULL; 01148 if (!gh) 01149 gh = new MidasHistory; 01150 return gh; 01151 }
MidasHistoryInterface* MakeMidasHistoryODBC | ( | ) |
Referenced by open_history(), and set_history_path().
MidasHistoryInterface* MakeMidasHistorySqlDebug | ( | ) |
Definition at line 2075 of file history_sql.cxx.
Referenced by open_history().
02076 { 02077 return new SqlHistory(new SqlDebug()); 02078 }