![]() |
![]() |
![]() |
cpg-network Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
struct CpgModifiableInterface; gboolean cpg_modifiable_get_modified (CpgModifiable *modifiable
); void cpg_modifiable_set_modified (CpgModifiable *modifiable
,gboolean modified
);
This interface can be implemented when an object needs to keep track of whether or not it has been modified.
struct CpgModifiableInterface { GTypeInterface parent; gboolean (*get_modified) (CpgModifiable *modifiable); void (*set_modified) (CpgModifiable *modifiable, gboolean modified); };
gboolean cpg_modifiable_get_modified (CpgModifiable *modifiable
);
Get the modified state.
|
A CpgModifiable |
Returns : |
TRUE if the object has been modified, FALSE otherwise |
void cpg_modifiable_set_modified (CpgModifiable *modifiable
,gboolean modified
);
Set the modified state of the object.
|
A CpgModifiable |
|
Modified state |