| 32 | {} |
| 33 | |
| 34 | void Output_Manager::init_Output_Manager(sml::Kernel* pKernel, Soar_Instance* pSoarInstance) |
| 35 | { |
| 36 | |
| 37 | m_Kernel = pKernel; |
| 38 | m_Soar_Instance = pSoarInstance; |
| 39 | |
| 40 | if (db_dbg_mode || db_mode) |
| 41 | { |
| 42 | soar_module::sqlite_database* new_db = new soar_module::sqlite_database(); |
| 43 | m_db = new OM_DB(new_db); |
| 44 | m_db->create_db(); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | Output_Manager::Output_Manager() |
| 49 | { |
no test coverage detected