]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.h
*** empty log message ***
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / ColorLayerImageView.h
1
2
3
4 /**
5  *  \file 
6  *  \brief Class ThresholdImageView . 
7  */
8
9 /**
10  * \class ThresholdImageView
11  * \brief 
12  */
13  
14 #ifndef __ColorLayerImageView_h__
15 #define __ColorLayerImageView_h__
16
17 #include "LayerImageBase.h"
18
19
20 class  ColorLayerImageView : public LayerImageBase
21   {
22   public: 
23           ColorLayerImageView( );
24           ~ColorLayerImageView();
25           void SetSliceFixDinamic(bool fix_dinamic);
26           void SetZ2(int z2);
27           virtual int GetZ();
28
29   private:
30
31           int _z2;
32           bool _fix_dinamic;
33           virtual void ConfigLookupTable();
34
35
36   protected:
37  };
38
39 #endif
40