![]() |
vrpRouting
0.3
|
#include <stddef.h>
Go to the source code of this file.
Typedefs | |
typedef struct PickDeliveryOrders_t | PickDeliveryOrders_t |
Functions | |
void | get_shipments (char *, PickDeliveryOrders_t **, size_t *) |
Reads the pick-Deliver shipments for timestams and intervals. More... | |
void | get_shipments_euclidean (char *, PickDeliveryOrders_t **, size_t *) |
Reads the pick-Deliver shipments for euclidean information. More... | |
void | get_shipments_raw (char *, PickDeliveryOrders_t **, size_t *) |
Reads the pick-Deliver shipments for raw data. More... | |
typedef struct PickDeliveryOrders_t PickDeliveryOrders_t |
Definition at line 30 of file orders_input.h.
void get_shipments | ( | char * | sql, |
PickDeliveryOrders_t ** | rows, | ||
size_t * | total_rows | ||
) |
Reads the pick-Deliver shipments for timestams and intervals.
[in] | sql | SQL query to execute |
[out] | rows | C Container that holds the data |
[out] | total_rows | Total rows recieved |
Definition at line 331 of file orders_input.c.
References ANY_INTEGER, Column_info_t::colNumber, Column_info_t::eType, INTERVAL, Column_info_t::name, pgr_get_pd_orders_general(), Column_info_t::strict, TIMESTAMP, and Column_info_t::type.
Referenced by process().
void get_shipments_euclidean | ( | char * | sql, |
PickDeliveryOrders_t ** | rows, | ||
size_t * | total_rows | ||
) |
Reads the pick-Deliver shipments for euclidean information.
[in] | sql | SQL query to execute |
[out] | rows | C Container that holds the data |
[out] | total_rows | Total rows recieved |
Definition at line 414 of file orders_input.c.
References ANY_INTEGER, ANY_NUMERICAL, Column_info_t::colNumber, Column_info_t::eType, Column_info_t::name, pgr_get_pd_orders_general(), Column_info_t::strict, and Column_info_t::type.
Referenced by process().
void get_shipments_raw | ( | char * | sql, |
PickDeliveryOrders_t ** | rows, | ||
size_t * | total_rows | ||
) |
Reads the pick-Deliver shipments for raw data.
[in] | sql | SQL query to execute |
[out] | rows | C Container that holds the data |
[out] | total_rows | Total rows recieved |
Definition at line 376 of file orders_input.c.
References ANY_INTEGER, Column_info_t::colNumber, Column_info_t::eType, Column_info_t::name, pgr_get_pd_orders_general(), Column_info_t::strict, and Column_info_t::type.
Referenced by process().