Add a new sequence for specific optional arguments
//! modules list
typedef sequence<string> ModulesList;
+//! A generic parameter
+struct Parameter
+{
+ string name;
+ string value;
+};
+//! Generic parameter list
+typedef sequence<Engines::Parameter> ParameterList;
+
//! Type to describe required properties of a resource
struct ResourceParameters
{
Name of the batch queue choosed - optional
*/
string queue;
+
+ /*!
+ Specific parameters for each type of job - optional
+ */
+ Engines::ParameterList specific_parameters;
};
/*! \brief Interface of the %salomelauncher