-
-
Notifications
You must be signed in to change notification settings - Fork 309
/
test_raster3d_lib.h
30 lines (26 loc) · 987 Bytes
/
test_raster3d_lib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*****************************************************************************
*
* MODULE: Grass raster3d Library
* AUTHOR(S): Soeren Gebbert, Braunschweig (GER) Jun 2011
* soerengebbert <at> googlemail <dot> com
*
* PURPOSE: Unit and Integration tests
*
* COPYRIGHT: (C) 2000 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
*****************************************************************************/
#ifndef _TEST_RASTER3D_LIB_H_
#define _TEST_RASTER3D_LIB_H_
#include <grass/raster3d.h>
#include <grass/gis.h>
#include <grass/glocale.h>
#include <sys/time.h>
double compute_time_difference(struct timeval, struct timeval);
int unit_test_coordinate_transform(void);
int unit_test_put_get_value(void);
int unit_test_put_get_value_large_file(int, int, int, int);
#endif