Changeset 595 for library/trunk/library-core
- Timestamp:
- 07/29/06 22:58:33 (2 years ago)
- Files:
-
- library/trunk/library-core/include/Library.hpp (modified) (3 diffs)
- library/trunk/library-core/src/Library.cpp (modified) (4 diffs)
- library/trunk/library-core/src/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
library/trunk/library-core/include/Library.hpp
r485 r595 116 116 class GeoLocationManager; 117 117 class SQLManager; 118 class SampleManager; 118 119 119 120 … … 143 144 #endif 144 145 virtual SQLManager *getSQLMgr(); 146 virtual SampleManager *getSampleMgr(); 145 147 146 148 virtual bool doLoop(); … … 161 163 Utilities *m_Utilities; 162 164 SQLManager *m_SQLManager; 163 165 SampleManager *m_SampleManager; 164 166 165 167 library/trunk/library-core/src/Library.cpp
r485 r595 63 63 #include "GeoLocationManager.hpp" 64 64 #include "SQLManager.hpp" 65 65 #include "SampleManager.hpp" 66 66 67 67 #ifdef STDTAGS … … 393 393 m_DNSManager = new DNSManager(this); 394 394 m_SQLManager = new SQLManager(this); 395 m_SampleManager = new SampleManager(this); 395 396 } 396 397 } … … 535 536 m_SocketManager->doList(); 536 537 } 538 537 539 538 540 … … 779 781 } 780 782 783 SampleManager *Library::getSampleMgr() 784 { 785 return m_SampleManager; 786 } 781 787 782 788 library/trunk/library-core/src/Makefile.am
r474 r595 27 27 library_SOURCES += Utilities.cpp 28 28 library_SOURCES += SQLManager.cpp SQLHandler.cpp SQLQuery.cpp SQLResult.cpp SQLCallback.cpp 29 library_SOURCES += SampleManager.cpp SampleManager.hpp 29 30 30 31
