OPERA
1.0
Open source echelle spectrograph reduction pipeline
|
#include "operaError.h"
Go to the source code of this file.
Defines | |
#define | MAXPARAMETERVALUELENGTH 4096 |
Functions | |
operaErrorCode | operaParameterAccessSetParamaterFilepath (const char *filepath) |
This function sets the static filepath for a module calling this library. | |
operaErrorCode | operaParameterAccessGet (const char *name, char **value) |
This function gets a value [list] for a given name. | |
operaErrorCode | operaParameterAccessSet (const char *name, const char *value) |
This function sets a value for a given name. | |
operaErrorCode | operaParameterAccessAdd (const char *name, const char *value) |
This function adds a name value listentry . | |
operaErrorCode | operaParameterAccessDelete (const char *name, const char *value) |
This function deletes a value from a given name. | |
operaErrorCode | operaParameterAccessRemove (const char *name) |
This function removes a name value entry. |
#define MAXPARAMETERVALUELENGTH 4096 |
operaErrorCode operaParameterAccessAdd | ( | const char * | name, |
const char * | value | ||
) |
This function adds a name value listentry .
operaParameterAccessAdd(const char *name, const char *value)
name | is a char pointer to the name |
value | is a char pointer to the value [list] |
operaErrorCode operaParameterAccessDelete | ( | const char * | name, |
const char * | value | ||
) |
This function deletes a value from a given name.
operaParameterAccessDelete(const char *name, const char *value)
name | is a char pointer to the name |
value | is a char pointer to the value |
operaErrorCode operaParameterAccessGet | ( | const char * | name, |
char ** | value | ||
) |
This function gets a value [list] for a given name.
operaErrorCode operaParameterAccessGet(const char *name, char *&value)
name | is a char pointer to the name |
value | is a char pointer address to the value [list] |
operaErrorCode operaParameterAccessRemove | ( | const char * | name | ) |
This function removes a name value entry.
operaParameterAccessRemove(const char *name)
name | is a char pointer to the name |
operaErrorCode operaParameterAccessSet | ( | const char * | name, |
const char * | value | ||
) |
This function sets a value for a given name.
operaParameterAccessSet(const char *name, const char *value)
name | is a char pointer to the name |
value | is a char pointer address to the value |
operaErrorCode operaParameterAccessSetParamaterFilepath | ( | const char * | filepath | ) |
This function sets the static filepath for a module calling this library.
operaErrorCode operaParameterAccessSetParamaterFilepath(const char *filepath)
filepath | is a char pointer to the filepath or NULL to set to default |