Mass++ Common Libraries v2.7.5
 All Classes Namespaces Files Functions Variables Enumerations Macros
DefaultDataManager.cpp
Go to the documentation of this file.
1 
12 #include "stdafx.h"
13 #include "DefaultDataManager.h"
14 
15 
16 using namespace kome::objects;
17 
18 
19 #include <crtdbg.h>
20 #ifdef _DEBUG
21  #define new new( _NORMAL_BLOCK, __FILE__, __LINE__ )
22  #define malloc( s ) _malloc_dbg( s, _NORMAL_BLOCK, __FILE__, __LINE__ )
23 #endif // _DEBUG
24 
25 
26 
27 // constructor
29 }
30 
31 // destructor
33 }
34 
35 // on open sample
37 }
38 
39 // on close sample
40 void DefaultDataManager::onCloseSample( Sample* sample, const bool deleting ) {
41 }
42 
43 // on open spectrum
45 }
46 
47 // on close spectrum
48 void DefaultDataManager::onCloseSpectrum( Spectrum* spec, const bool deleting ) {
49 }
50 
51 // on open chromatogram
53 }
54 
55 // on close chromatogram
56 void DefaultDataManager::onCloseChromatogram( Chromatogram* chrom, const bool deleting ) {
57 }
58 
59 // on open data map
61 }
62 
63 // on close data map
64 void DefaultDataManager::onCloseDataMap( DataMapInfo* dataMap, const bool deleting ) {
65 }
sample information management class
Definition: Sample.h:34
virtual void onOpenChromatogram(Chromatogram *chrom)
This method is called when a chromatogram is opened. (override method)
deta map information
Definition: DataMapInfo.h:31
virtual void onOpenSample(Sample *sample)
This method is called when a sample is opened. (override method)
virtual void onOpenDataMap(DataMapInfo *dataMap)
This method is called when a data map is opened. (override method)
interfaces of DefaultDataManager class
virtual void onOpenSpectrum(Spectrum *spec)
This method is called when a spectrum is opened. (override method)
virtual void onCloseChromatogram(Chromatogram *chrom, const bool deleting)
This method is called when a chromatogram is closed. (override method)
virtual void onCloseDataMap(DataMapInfo *dataMap, const bool deleting)
This method is called when a data map is closed. (override method)
virtual void onCloseSample(Sample *sample, const bool deleting)
This method is called when a sample is closed. (override method)
spectrum information management class
Definition: Spectrum.h:30
virtual void onCloseSpectrum(Spectrum *spec, const bool deleting)
This method is called when a spectrum is closed. (override method)
chromatogram information management class
Definition: Chromatogram.h:33