Classes | Typedefs | Functions
manual.c File Reference

Go to the source code of this file.

Classes

struct  Object
 
struct  Vehicle
 
struct  Car
 
struct  Truck
 

Typedefs

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

Functions

int main (void)
 

Typedef Documentation

typedef struct Car Car

Car type.

Definition at line 7 of file manual.c.

typedef struct Object Object

Object type.

Definition at line 5 of file manual.c.

typedef struct Truck Truck

Truck type.

Definition at line 8 of file manual.c.

typedef struct Vehicle Vehicle

Vehicle type.

Definition at line 6 of file manual.c.

Function Documentation

int main ( void  )

Main function.

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

Definition at line 82 of file manual.c.

83 {
84  Car c;
85  vehicleStart((Vehicle*) &c);
86 }
void vehicleStart(Vehicle *obj)
Definition: manual.c:37
Definition: manual.c:61