Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
solver.cpp
Go to the documentation of this file.
1 
14 #include "solver.h"
15 #ifdef USE_PARAMETERS_FACTORY
16 #include "parameters_factory.h"
17 #endif
18 
19 //- parameter entries
20 namespace {
21  void append_entry(Parameters& param)
22  {
23  param.Register_string("solver_type", "NULL");
24  }
25 
26 
27 #ifdef USE_PARAMETERS_FACTORY
28  bool init_param = ParametersFactory::Register("Solver", append_entry);
29 #endif
30 }
31 //- end
void Register_string(const string &, const string &)
Definition: parameters.cpp:352
Class for parameters.
Definition: parameters.h:40
static bool Register(const std::string &realm, const creator_callback &cb)