OPERA
1.0
Open source echelle spectrograph reduction pipeline
|
00001 #ifndef OPERAPARAMETERACCESSLIB_H 00002 #define OPERAPARAMETERACCESSLIB_H 00003 00004 #include "operaError.h" 00005 00006 // the maximum value length that a parameter can have 00007 #define MAXPARAMETERVALUELENGTH 4096 00008 00009 operaErrorCode operaParameterAccessSetParamaterFilepath(const char *filepath); 00010 operaErrorCode operaParameterAccessGet(const char *name, char **value); 00011 operaErrorCode operaParameterAccessSet(const char *name, const char *value); 00012 operaErrorCode operaParameterAccessAdd(const char *name, const char *value); 00013 operaErrorCode operaParameterAccessDelete(const char *name, const char *value); 00014 operaErrorCode operaParameterAccessRemove(const char *name); 00015 00016 #endif 00017