Manual inheritance and membership
manual.c File Reference

Classes

struct  Object
 Object type. More...
struct  Vehicle
 Vehicle type. More...
struct  Car
 Car type. More...
struct  Truck
 Truck type. More...

Functions

int main (void)

Function Documentation

◆ main()

int main ( void )

Main function.

Ref vehicleStart(), objRef(), objUnref().

83{
84 Car c;
85 vehicleStart((Vehicle*) &c);
86}
Car type.
Definition manual.c:62
Vehicle type.
Definition manual.c:38