]> Creatis software - cpPlugins.git/commitdiff
Merge branch 'master' of ssh://git.creatis.insa-lyon.fr/cpPlugins
authorLeonardo Flórez-Valencia <florez-l@javeriana.edu.co>
Fri, 4 Nov 2016 02:25:34 +0000 (21:25 -0500)
committerLeonardo Flórez-Valencia <florez-l@javeriana.edu.co>
Fri, 4 Nov 2016 02:25:34 +0000 (21:25 -0500)
appli/bash/Config.h.in
lib/Instances/BaseObjects.i

index 859965d482f7eb749d3b32ee3b82df14de7155fb..8306fe58fd74fc468e48dd1020879f7a5d59eef7 100644 (file)
@@ -133,10 +133,6 @@ namespace cpPlugins_bash
   // -----------------------------------------------------------------------
   inline void LoadDefinitions( TCommands& commands )
   {
-    commands[ "define" ].push_back(
-      std::string( "bool_types=" ) +
-      std::string( cpPlugins_CONFIG_BOOLEAN_TYPES )
-      );
     commands[ "define" ].push_back(
       std::string( "int_types=" ) +
       std::string( cpPlugins_CONFIG_INTEGER_TYPES )
@@ -175,7 +171,7 @@ namespace cpPlugins_bash
         );
     commands[ "define" ].push_back(
       std::string(
-        "scalar_pixels=#bool_types#;#int_types#;#uint_types#;#real_types#"
+        "scalar_pixels=#int_types#;#uint_types#;#real_types#"
         )
       );
   }
index 45758d7298343500b30df02f1d7325af1fdf6e6a..09a0f160e6e593cebb6dc33da87c014fa049020f 100644 (file)
@@ -1,11 +1,11 @@
 header #define ITK_MANUAL_INSTANTIATION
-header #include <vnl/vnl_complex_traits.h>
-header VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits< bool >
-header {
-header   enum { isreal = true };
-header   static bool conjugate( bool x ) { return( x ); }
-header   static std::complex< bool > complexify( bool x ) { return( std::complex< bool >( x, false ) ); }
-header };
+header #include <vnl/vnl_complex_traits.h>
+header VCL_DEFINE_SPECIALIZATION struct vnl_complex_traits< bool >
+header {
+header   enum { isreal = true };
+header   static bool conjugate( bool x ) { return( x ); }
+header   static std::complex< bool > complexify( bool x ) { return( std::complex< bool >( x, false ) ); }
+header };
 
 define other_dims=6;8;10
 
@@ -19,13 +19,13 @@ tinclude itk#diff_tensors#:h|hxx
 tinclude itkSymmetricEigenAnalysis:h|hxx
 tinclude itkSimpleDataObjectDecorator:h|hxx
 tinclude itkVariableLengthVector:h|hxx
-tinclude vnl/vnl_vector:h|hxx
-tinclude vnl/vnl_matrix:h|hxx
 
-cinclude vnl/vnl_c_vector.hxx
+* tinclude vnl/vnl_vector:h|hxx
+* tinclude vnl/vnl_matrix:h|hxx
+* cinclude vnl/vnl_c_vector.hxx
+* instances vnl_vector< bool >
+* instances vnl_matrix< bool >
 
-instances vnl_vector< bool >
-instances vnl_matrix< bool >
 instances itk::Array2D< #scalar_pixels# >
 instances itk::Array< #scalar_pixels# >
 instances itk::FixedArray< #scalar_pixels#, #process_dims# >