// #ifndef BRUKERIMAGESET_H #define BRUKERIMAGESET_H /* #include "brukerSystem.h" #include "brukerimage.h" #include typedef bool (*BOOL_FUNCTION_PFILE_PFILE_POINTER)(File *, File *); typedef std::map CoherentBrukerImageSetMap; class BRUKER_EXPORT BrukerImageSet : public std::vector { public: BrukerImageSet(); ~BrukerImageSet(); /// to allow user to give is own comparison function void SetUserLessThanFunction( BOOL_FUNCTION_PFILE_PFILE_POINTER userFunc ) { UserLessThanFunction = userFunc; } CoherentBrukerImageSetMap SplitOnOrientation(); CoherentBrukerImageSetMap SplitOnPosition(); }; */ #endif