]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOTreeView.h
Clean Up Code and Added min dimension check
[creaImageIO.git] / src2 / creaImageIOTreeView.h
index de4f7f23bd621f474f30e9a97a71a793cf399204..4f61518eda7e672922402dd7f3a241c22c469a1b 100644 (file)
@@ -46,18 +46,14 @@ namespace creaImageIO
          void SetMaxDimension(int maxdim){ mSelectionMaxDimension=maxdim; }
          ///Sets the minimum dimension allowed for selections
          void SetMinDimension(int mindim){ mSelectionMinDimension=mindim; }
-         ///Sets the output dimension desired for selections
-         void SetOutputDimension(int outdim){ mOutputDimension=outdim; }
-    
+         
     protected:
       TreeHandler* GetTreeHandler() { return mTreeHandler; }
          ///Gets the maximum dimension allowed for selections
          int GetMaxDimension(){ return mSelectionMaxDimension; }
          ///Gets the minimum dimension allowed for selections
          int GetMinDimension(){ return mSelectionMinDimension; }
-         ///Gets the output dimension desired for selections
-         int GetOutputDimension(){ return mOutputDimension; }
-
+        
     private:
       /// The TreeHandler with which it corresponds
       TreeHandler* mTreeHandler;
@@ -65,9 +61,7 @@ namespace creaImageIO
          int mSelectionMaxDimension;
          //The selection's minimum dimension
          int mSelectionMinDimension;
-         //The user desired output dimension
-         int mOutputDimension;
-    };
+         };
     // EO class TreeView
     //=====================================================================