Top | ![]() |
![]() |
![]() |
![]() |
FoDatatype * | fo_boolean_new () |
FoDatatype * | fo_boolean_new_with_value () |
gboolean | fo_boolean_get_value () |
FoDatatype * | fo_boolean_get_true () |
FoDatatype * | fo_boolean_get_false () |
FoDatatype *
fo_boolean_new (void
);
Creates a new FoBoolean initialized to default value.
FoDatatype *
fo_boolean_new_with_value (gboolean value
);
Creates a new FoBoolean set to value
.
gboolean
fo_boolean_get_value (FoDatatype *boolean
);
Get the value of boolean
.
FoDatatype *
fo_boolean_get_true (void
);
Create and return an FoBoolean with the well-known value true
.
This saves creation of multiple FoBoolean objects that all have the
value true
.
FoDatatype *
fo_boolean_get_false (void
);
Create and return an FoBoolean with the well-known value false
.
This saves creation of multiple FoBoolean objects that all have the
value false
.