10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
18 #include "../../datastructures/datastructures.h"
19 #include "../../shared/shared.h"
37 vector<Object*>::iterator object;
44 name=in_option->
Name();
46 if(!name)
_error_(
"input option has an empty name");
47 if(strchr(name,
'.'))
_error_(
"Option \"" << name <<
"\" has a protected character \".\"");
48 if(strchr(name,
'['))
_error_(
"Option \"" << name <<
"\" has a protected character \"[\"");
49 if(strchr(name,
']'))
_error_(
"Option \"" << name <<
"\" has a protected character \"]\"");
54 option=xDynamicCast<Option*>(*
object);
55 if (!strcmp(option->
Name(),name)){
56 _error_(
"Options \"" << name <<
"\" found multiple times");
69 vector<Object*>::iterator object;
75 option=xDynamicCast<Option*>(*
object);
79 _printf_(
"The dynamic_cast from Object* to Option* is failing.\n");
81 _printf_(
"A quick workaround consists of using a C-like cast\n");
83 _printf_(
"Open Options.cpp and change the dynamic_cast in Options::GetOption by a C-like cast\n");
86 _error_(
"Make the fix above and recompile ISSM");
89 if (!strncmp(name,option->
Name(),strlen(option->
Name()))){
92 if(!strcmp(name,option->
Name())){