123456789101112131415161718192021222324252627282930 |
- /*****************************************************************************
- *
- * MODULE: Grass g3d 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_G3D_LIB_H_
- #define _TEST_G3D_LIB_H_
- #include <grass/G3d.h>
- #include <grass/gis.h>
- #include <grass/glocale.h>
- double compute_time_difference(struct timeval start, struct timeval end);
- int unit_test_coordinate_transform(void);
- int unit_test_put_get_value(void);
- #endif
|