5 #ifndef _GENERIC_OPTION_
6 #define _GENERIC_OPTION_
12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
16 #include "../../shared/shared.h"
17 #include "../../datastructures/datastructures.h"
21 template <
class OptionType>
66 void Get(OptionType* pvalue){
74 #if defined(_HAVE_AD_) && !defined(_WRAPPERS_)
79 int numel = this->size[0]*this->size[1];
81 for(
int i=0;i<numel;i++) outvalue[i]=this->value[i];
90 int numel = this->size[0]*this->size[1];
92 for(
int i=0;i<numel;i++) outvalue[i]=this->value[i];
99 int stringsize=strlen(this->value)+1;
100 char* outstring=xNew<char>(stringsize);
101 xMemCpy<char>(outstring,this->value,stringsize);
109 if(name) xDelete<char>(name);
110 if(value) xDelete<char>(value);