Changeset 659
- Timestamp:
- 10/08/06 17:05:13 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nepenthes/trunk/modules/submit-postgres/submit-postgres.cpp
r649 r659 123 123 m_Pass, 124 124 m_DB, 125 m_Options); 125 m_Options, 126 this); 126 127 127 128 if (m_SQLHandler == NULL) … … 314 315 315 316 317 void SubmitPostgres::sqlConnected() 318 { 319 logPF(); 320 } 321 322 void SubmitPostgres::sqlDisconnected() 323 { 324 logPF(); 325 } 326 316 327 extern "C" int32_t module_init(int32_t version, Module **module, Nepenthes *nepenthes) 317 328 { nepenthes/trunk/modules/submit-postgres/submit-postgres.hpp
r607 r659 158 158 bool sqlFailure(SQLResult *result); 159 159 160 void sqlConnected(); 161 void sqlDisconnected(); 162 160 163 private: 161 164 SQLHandler *m_SQLHandler; … … 173 176 174 177 extern nepenthes::Nepenthes *g_Nepenthes; 175
