Named Individuals
-
struct CowlNamedInd : public CowlIndividual, public CowlEntity
Represents a NamedIndividual in the OWL 2 specification.
Public Static Functions
-
static inline CowlNamedInd *cowl_named_ind(CowlIRI *iri)
Returns a retained named individual.
- Parameters
iri – IRI of the individual.
- Returns
Retained named individual, or NULL on error.
-
static inline CowlNamedInd *cowl_named_ind_from_string(UString string)
Returns a retained named individual given the string representation of its IRI.
- Parameters
string – String representation of the IRI.
- Returns
Retained named individual, or NULL on error.
-
static inline CowlIRI *cowl_named_ind_get_iri(CowlNamedInd *ind)
Gets the IRI of the named individual.
- Parameters
ind – The named individual.
- Returns
IRI of the named individual.
-
cowl_named_ind_from_static(CSTR)
Returns a retained named individual given the static string representation of its IRI.
- Parameters
CSTR – [char const[]] Static string.
- Returns
[CowlNamedInd *] Retained named individual, or NULL on error.
-
static inline CowlNamedInd *cowl_named_ind(CowlIRI *iri)