]> Creatis software - bbtk.git/commitdiff
no message
authorEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Sun, 12 Sep 2010 23:15:15 +0000 (23:15 +0000)
committerEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Sun, 12 Sep 2010 23:15:15 +0000 (23:15 +0000)
kernel/src/bbtkInterpreter.h
packages/itk/src/bbitkImageSeriesReader.cxx

index 96fe7dc56e41c58e48347e185891b1956753f96f..043706409546e792bda5093a332b9e860ab1c9aa 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.h,v $
   Language:  C++
-  Date:      $Date: 2008/12/15 09:04:47 $
-  Version:   $Revision: 1.39 $
+  Date:      $Date: 2010/09/12 23:15:15 $
+  Version:   $Revision: 1.40 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -327,13 +327,13 @@ namespace bbtk
 
     void Debug(const std::string& arg);
 
+         /// Constructor
+         Interpreter(const std::string& cpp_file = "");
+         
+         Interpreter(VirtualExec::Pointer);
+         
   private:
 
-    /// Constructor
-    Interpreter(const std::string& cpp_file = "");
-
-    Interpreter(VirtualExec::Pointer);
 
     void Init(VirtualExec::Pointer, const std::string& cpp_file);
 
index 0d6b35eefcd687cc9aa1cc24f7db17b22b55af1f..9300d07545d2c3ae4dd17304ba5de0c42ce87232 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbitkImageSeriesReader.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/06/24 08:08:57 $
-  Version:   $Revision: 1.10 $
+  Date:      $Date: 2010/09/12 23:15:17 $
+  Version:   $Revision: 1.11 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -134,7 +134,7 @@ std::cout << "--------------------------------------------------- ImageSeriesRea
     const std::vector<std::string>& filenames = bbGetInputFileNames();
     
 std::cout << "--------------------------------------------------- size " << filenames.size() << std::endl;
-       for (int i = 0; i< filenames.size(); i++)
+       for (int i = 0; i< (int)(filenames.size()); i++)
        std::cout << "-- [" <<filenames[i] << "]" << std::endl;
        
     reader->SetFileNames(filenames);