22 #ifndef __CR_PROP_LIST_H__ 23 #define __CR_PROP_LIST_H__ enum CRStatus cr_prop_list_set_decl(CRPropList *a_this, CRDeclaration *a_decl)
cr_prop_list_set_decl: @a_this: the current instance of CRPropList @a_decl: the new property value.
CRPropList * cr_prop_list_append2(CRPropList *a_this, CRString *a_prop, CRDeclaration *a_decl)
cr_prop_list_append2: Appends a pair of prop/declaration to the current prop list.
void cr_prop_list_destroy(CRPropList *a_this)
cr_prop_list_destroy: @a_this: the current instance of CRPropList
enum CRStatus cr_prop_list_lookup_prop(CRPropList *a_this, CRString *a_prop, CRPropList **a_pair)
cr_prop_list_lookup_prop: @a_this: the current instance of CRPropList @a_prop: the property to lookup...
The Croco library basic types definitions And global definitions.
enum CRStatus cr_prop_list_get_prop(CRPropList const *a_this, CRString **a_prop)
cr_prop_list_get_prop: @a_this: the current instance of CRPropList @a_prop: out parameter.
CRStatus
The status type returned by the methods of the croco library.
typedefG_BEGIN_DECLS struct _CRPropList CRPropList
CRPropList * cr_prop_list_get_prev(CRPropList *a_this)
cr_prop_list_get_prev: @a_this: the current instance of CRPropList
Declaration file of the CRString class.
enum CRStatus cr_prop_list_set_prop(CRPropList *a_this, CRString *a_prop)
cr_prop_list_set_prop: @a_this: the current instance of CRPropList @a_prop: the property to set
The declaration of the CRDeclaration class.
typedefG_BEGIN_DECLS struct _CRString CRString
CRPropList * cr_prop_list_unlink(CRPropList *a_this, CRPropList *a_pair)
cr_prop_list_unlink: @a_this: the current list of prop/decl pairs @a_pair: the prop/decl pair to unli...
enum CRStatus cr_prop_list_get_decl(CRPropList const *a_this, CRDeclaration **a_decl)
cr_prop_list_get_decl: @a_this: the current instance of CRPropList @a_decl: out parameter.
CRPropList * cr_prop_list_prepend(CRPropList *a_this, CRPropList *a_to_append)
cr_prop_list_prepend: @a_this: the current instance of CRPropList @a_to_prepend: the new list to prep...
CRPropList * cr_prop_list_get_next(CRPropList *a_this)
cr_prop_list_get_next: @a_this: the current instance of CRPropList
CRPropList * cr_prop_list_append(CRPropList *a_this, CRPropList *a_to_append)
cr_prop_list_append: @a_this: the current instance of CRPropList @a_to_append: the property list to a...
CRPropList * cr_prop_list_prepend2(CRPropList *a_this, CRString *a_prop, CRDeclaration *a_decl)
cr_prop_list_prepend2: @a_this: the current instance of CRPropList @a_prop_name: property name to app...