]> Creatis software - creaBruker.git/blob - lib/src1/brukerimageset.h
Initial revision
[creaBruker.git] / lib / src1 / brukerimageset.h
1 //
2 #ifndef BRUKERIMAGESET_H
3 #define BRUKERIMAGESET_H
4
5 /*
6 #include "brukerSystem.h"
7 #include "brukerimage.h"
8 #include <vector>
9
10 typedef bool (*BOOL_FUNCTION_PFILE_PFILE_POINTER)(File *, File *);
11 typedef std::map<std::string, BrukerImageSet> CoherentBrukerImageSetMap;
12    
13 class BRUKER_EXPORT BrukerImageSet : public std::vector<BrukerImage> {
14 public:
15    BrukerImageSet();
16    ~BrukerImageSet();
17
18
19    /// to allow user to give is own comparison function
20    void SetUserLessThanFunction( BOOL_FUNCTION_PFILE_PFILE_POINTER userFunc ) 
21                         { UserLessThanFunction = userFunc; }  
22
23    CoherentBrukerImageSetMap SplitOnOrientation(); 
24    CoherentBrukerImageSetMap SplitOnPosition(); 
25
26 };
27 */
28 #endif