|
MOONS Pipeline Reference Manual 0.13.2
|
Data Structures | |
| struct | moo_flx |
| FLX format. More... | |
Functions | |
| moo_flx * | moo_flx_new (void) |
| Create a new moo_flx | |
| moo_flx * | moo_flx_load (const cpl_frame *frame) |
| Load a FLX frame and create a moo_flx. | |
| cpl_table * | moo_flx_get_obj (moo_flx *self, const char *objname) |
| Find the TABLE for a given object name. | |
| void | moo_flx_delete (moo_flx *self) |
| Delete a moo_flx. | |
This module provides functions to create, use, and destroy a moo_flx
Functionality include:
| void moo_flx_delete | ( | moo_flx * | self | ) |
| cpl_table * moo_flx_get_obj | ( | moo_flx * | self, |
| const char * | objname | ||
| ) |
| moo_flx * moo_flx_load | ( | const cpl_frame * | frame | ) |
Load a FLX frame and create a moo_flx.
The returned object must be deallocated using moo_flx_delete().
Possible cpl_error_code set in this function:
Definition at line 84 of file moo_flx.c.
References moo_flx_new().
| moo_flx * moo_flx_new | ( | void | ) |
Create a new moo_flx
The returned object must be deallocated using moo_flx_delete().
Definition at line 67 of file moo_flx.c.
Referenced by moo_flx_load().