]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Parameters.hxx
Parameters class fully added
[cpPlugins.git] / lib / cpPlugins / Interface / Parameters.hxx
index f0c3a27e8d99b0ab17e95af7a02f33fc35a946e6..0a73b373b2ca558f7a3ed21a81a2eb8cf51f455a 100644 (file)
@@ -2,6 +2,7 @@
 #define __CPPLUGINS__INTERFACE__PARAMETERS__HXX__
 
 #include <cstdlib>
+#include <iostream>
 #include <sstream>
 
 // -------------------------------------------------------------------------
@@ -18,7 +19,7 @@
     std::stringstream ss;                                               \
     for( I i = b; i != e; ++i )                                         \
       ss << *i << ":";                                                  \
-    pIt->second = ss.str( );                                            \
+    pIt->second.second = ss.str( );                                     \
   }
 
 cpPlugins_Interface_Parameters_SetListMacro( String );
@@ -95,6 +96,7 @@ GetValueAsIndexList( std::vector< I >& lst, const TString& name ) const
     return;
 
   // TODO:
+  std::cerr << "TODO GetValueAsIndexList" << std::endl;
 }
 
 // -------------------------------------------------------------------------
@@ -110,6 +112,7 @@ GetValueAsPointList( std::vector< P >& lst, const TString& name ) const
     return;
 
   // TODO:
+  std::cerr << "TODO GetValueAsPointList" << std::endl;
 }
 
 #endif // __CPPLUGINS__INTERFACE__PARAMETERS__HXX__