Show
Ignore:
Timestamp:
07/29/06 22:58:33 (2 years ago)
Author:
common
Message:

library

  • need to sync local changes with svn before i can svn copy the changes, else you get the message 'svn: Invalid change ordering: new node revision ID without delete'
    • ignore this commit
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • library/trunk/library-core/include/Library.hpp

    r485 r595  
    116116        class GeoLocationManager; 
    117117        class SQLManager; 
     118        class SampleManager; 
    118119 
    119120 
     
    143144#endif  
    144145                virtual SQLManager                      *getSQLMgr(); 
     146                virtual SampleManager           *getSampleMgr(); 
    145147 
    146148                virtual bool                            doLoop(); 
     
    161163                Utilities           *m_Utilities; 
    162164                SQLManager                      *m_SQLManager; 
    163                  
     165                SampleManager          *m_SampleManager; 
    164166                 
    165167                 
  • library/trunk/library-core/src/Library.cpp

    r485 r595  
    6363#include "GeoLocationManager.hpp" 
    6464#include "SQLManager.hpp" 
    65  
     65#include "SampleManager.hpp" 
    6666 
    6767#ifdef STDTAGS 
     
    393393                        m_DNSManager        = new DNSManager(this); 
    394394                        m_SQLManager            = new SQLManager(this); 
     395                        m_SampleManager         = new SampleManager(this); 
    395396                } 
    396397        } 
     
    535536            m_SocketManager->doList(); 
    536537                } 
     538 
    537539 
    538540 
     
    779781} 
    780782 
     783SampleManager *Library::getSampleMgr() 
     784{ 
     785        return m_SampleManager; 
     786} 
    781787 
    782788 
  • library/trunk/library-core/src/Makefile.am

    r474 r595  
    2727library_SOURCES += Utilities.cpp 
    2828library_SOURCES += SQLManager.cpp SQLHandler.cpp SQLQuery.cpp SQLResult.cpp SQLCallback.cpp 
     29library_SOURCES += SampleManager.cpp SampleManager.hpp 
    2930 
    3031