00001
00002 #ifndef __MGFP_INCLUDE_CONTEXT_H__
00003 #define __MGFP_INCLUDE_CONTEXT_H__
00004
00005 #include <mgfp/MgfFile.h>
00006 #include <mgfp/MgfHeader.h>
00007 #include <mgfp/MgfSpectrum.h>
00008
00009 namespace mgf
00010 {
00011
00016 struct MGFP_EXPORT Context
00017 {
00018 Context(MgfFile& file) : mgfFile(file) {}
00019 MgfFile& mgfFile;
00020 MgfSpectrum currentSpectrum;
00021 MgfHeader header;
00022 };
00023
00024 }
00025
00026 #endif // __MGFP_INCLUDE_CONTEXT_H__