is_classed


Description:

[ CCode ( cname = "G_TYPE_IS_CLASSED" ) ]
public bool is_classed ()

Example: Check if type is a classed type:

public interface Interface : Object {}
public abstract class AbstractGObject : Object, Interface {}
public abstract class AbstractSimpleObject {}
public enum Enum { E }

public static int main (string[] args) {
// Output: ``false``
Type type = typeof (Interface);
print (" is-classed: %s\n", type.is_classed ().to_string ());

// Output: ``true``
type = typeof (AbstractGObject);
print (" is-classed: %s\n", type.is_classed ().to_string ());

// Output: ``true``
type = typeof (AbstractSimpleObject);
print (" is-classed: %s\n", type.is_classed ().to_string ());

// Output: ``true``
type = typeof (Enum);
print (" is-classed: %s\n", type.is_classed ().to_string ());

return 0;
}

valac --pkg gobject-2.0 GLib.Type.is_classed.vala