osurs
0.0.1
|
Input and output of networks and its structures. More...
Macros | |
#define | INDENT_CHARS "" |
#define | INDENT_DEPTH 4 |
Functions | |
void | print_node (Node *node, int indent) |
Print node. More... | |
void | print_composition (Composition *composition, int indent) |
Print composition. More... | |
void | print_vehicle (Vehicle *vehicle, int indent) |
Print vehicle. More... | |
void | print_reservation (Reservation *reservation, int indent) |
Print reservation. More... | |
void | print_seat (Seat *seat, int indent) |
Print seat. More... | |
void | print_stop (Stop *stop, int indent) |
Print stop. More... | |
void | print_trip (Trip *trip, int indent) |
Print trip. More... | |
void | print_route (Route *route, int indent) |
Print route. More... | |
void | print_network (Network *network) |
Print network. More... | |
void | print_connection (Connection *connection) |
Print connection. More... | |
void | print_seat_collection (SeatCollection *collection, int indent) |
Print seat collection. More... | |
Input and output of networks and its structures.
void print_composition | ( | Composition * | composition, |
int | indent | ||
) |
Print composition.
composition | The composition struct to print. |
indent | The indent for printing. |
void print_connection | ( | Connection * | connection | ) |
Print connection.
connection | The connection struct to print. |
void print_network | ( | Network * | network | ) |
Print network.
network | The network struct to print. |
void print_node | ( | Node * | node, |
int | indent | ||
) |
Print node.
node | The node struct to print. |
indent | The indent for printing. |
void print_reservation | ( | Reservation * | reservation, |
int | indent | ||
) |
Print reservation.
reservation | The reservation struct to print. |
indent | The indent for printing. |
void print_route | ( | Route * | route, |
int | indent | ||
) |
Print route.
route | The route struct to print. |
indent | The indent for printing. |
void print_seat | ( | Seat * | seat, |
int | indent | ||
) |
Print seat.
seat | The seat struct to print. |
indent | The indent for printing. |
void print_seat_collection | ( | SeatCollection * | collection, |
int | indent | ||
) |
Print seat collection.
collection | The seat collection struct to print. |
indent | The indent for printing. |
void print_stop | ( | Stop * | stop, |
int | indent | ||
) |
Print stop.
stop | The stop struct to print. |
indent | The indent for printing. |
void print_trip | ( | Trip * | trip, |
int | indent | ||
) |
Print trip.
trip | The trip struct to print. |
indent | The indent for printing. |
void print_vehicle | ( | Vehicle * | vehicle, |
int | indent | ||
) |
Print vehicle.
vehicle | The vehicle struct to print. |
indent | The indent for printing. |