vrpRouting  0.3
time_multipliers_input.h
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: time_multipliers_input.h
3 
4 Copyright (c) 2021 pgRouting developers
6 
7 Developer:
8 Copyright (c) 2021 Celia Virginia Vergara Castillo
9 Copyright (c) 2021 Joseph Emile Honour Percival
10 
11 ------
12 
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17 
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22 
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 
27  ********************************************************************PGR-GNU*/
28 
29 #ifndef INCLUDE_C_COMMON_TIME_MULTIPLIERS_INPUT_H_
30 #define INCLUDE_C_COMMON_TIME_MULTIPLIERS_INPUT_H_
31 #pragma once
32 
33 #include <stddef.h>
34 
36 
39  char *sql,
40  Time_multipliers_t **row,
41  size_t *total_rows);
42 
45  char *sql,
46  Time_multipliers_t **row,
47  size_t *total_rows);
48 
49 #endif // INCLUDE_C_COMMON_TIME_MULTIPLIERS_INPUT_H_
Time_multipliers_t
Time Dependant Multipliers.
Definition: time_multipliers_t.h:46
get_timeMultipliers_raw
void get_timeMultipliers_raw(char *sql, Time_multipliers_t **row, size_t *total_rows)
Get the time multipliers using bigint.
Definition: time_multipliers_input.c:175
get_timeMultipliers
void get_timeMultipliers(char *sql, Time_multipliers_t **row, size_t *total_rows)
Get the time multipliers using interval.
Definition: time_multipliers_input.c:149