libdas2
das2 core C utilities
|
Go to the source code of this file.
Data Structures | |
struct | DasDesc |
Base structure for Stream Header Items. More... | |
Enumerations | |
enum | desc_type_t |
enumeration of Descriptor types, used internally for type checking. More... | |
Descriptor Functions | |
These work for any type of Descriptor, including PlaneDesc , PktDesc, StreamDesc, DasDs and DasVar. To make your compiler happy you will need to cast Plane, Packet and Stream Descriptor pointers to just the generic type of Descriptor pointer when using these functions. For example: | |
void | DasDesc_init (DasDesc *pThis, desc_type_t type) |
DasDesc * | new_Descriptor (void) |
void | DasDesc_freeProps (DasDesc *pThis) |
const char * | DasDesc_get (const DasDesc *pThis, const char *propertyName) |
DasErrCode | DasDesc_setBool (DasDesc *pThis, const char *sPropName, bool bVal) |
Set a boolean property Encodes the value as either the string "true" or the string "false". More... | |
enum desc_type_t |
enumeration of Descriptor types, used internally for type checking.
May have one of the following values:
DasErrCode DasDesc_setBool | ( | DasDesc * | pThis, |
const char * | sPropName, | ||
bool | bVal | ||
) |
Set a boolean property Encodes the value as either the string "true" or the string "false".
pThis | The descriptor to receive the property |
sPropName | the name of the property |
bVal | either true or false. |