fo-tblr

fo-tblr —

Synopsis




struct      FoTblr;
struct      FoTblrClass;
FoDatatype* fo_tblr_new                     (void);
FoDatatype* fo_tblr_new_from_values         (FoDatatype *top,
                                             FoDatatype *bottom,
                                             FoDatatype *left,
                                             FoDatatype *right);
FoDatatype* fo_tblr_get_top                 (FoDatatype *datatype);
FoDatatype* fo_tblr_get_bottom              (FoDatatype *datatype);
FoDatatype* fo_tblr_get_left                (FoDatatype *datatype);
FoDatatype* fo_tblr_get_right               (FoDatatype *datatype);

Description

Details

struct FoTblr

struct FoTblr;


struct FoTblrClass

struct FoTblrClass;


fo_tblr_new ()

FoDatatype* fo_tblr_new                     (void);

Creates a new FoTblr initialized to default value.

Returns : the new FoTblr

fo_tblr_new_from_values ()

FoDatatype* fo_tblr_new_from_values         (FoDatatype *top,
                                             FoDatatype *bottom,
                                             FoDatatype *left,
                                             FoDatatype *right);

Creates a new FoTblr with top, bottom, left and right components set to provided values.

top : FoDatatype to use as top value
bottom : FoDatatype to use as bottom value
left : FoDatatype to use as left value
right : FoDatatype to use as right value
Returns : New FoTblr

fo_tblr_get_top ()

FoDatatype* fo_tblr_get_top                 (FoDatatype *datatype);

Gets the top component value of datatype.

datatype : FoTblr
Returns : The top value of datatype.

fo_tblr_get_bottom ()

FoDatatype* fo_tblr_get_bottom              (FoDatatype *datatype);

Gets the .bottom component value of datatype

datatype : FoTblr
Returns : The bottom value of datatype

fo_tblr_get_left ()

FoDatatype* fo_tblr_get_left                (FoDatatype *datatype);

Gets the .left component value of datatype

datatype : FoTblr
Returns : The left value of datatype

fo_tblr_get_right ()

FoDatatype* fo_tblr_get_right               (FoDatatype *datatype);

Gets the .right component value of datatype

datatype : FoTblr
Returns : The right value of datatype