Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
dep_helper.C
Go to the documentation of this file.
1 //----------------------------------------------------------------------//
2 // This is just a dummy program for extracting CGAL files.
3 //----------------------------------------------------------------------//
4 #include <CGAL/basic.h>
5 
6 // Check version number.
7 #if ( CGAL_VERSION_NR < 1002000100 )
8 #error "CGAL version CGAL_VERSION is too old. Support only version 2.0 and newer."
9 #endif
10 
11 #include <CGAL/Simple_cartesian.h>
13 
14 // Half-edge data structure
15 #include <CGAL/Halfedge_data_structure_using_vector.h>
17 
18 // and Polyhedron
20 
21 // Squared-distance
23 
24 // Miscellaneous
25 #include <CGAL/Range_tree_k.h>
26 
27 // Standard C++ headers
28 #include <cassert>
29 #include <cmath>
30 #include <cstddef>
31 #include <cstdio>
32 #include <cstring>
33 #include <cstdlib>
34 #include <fstream>
35 #include <iostream>
36 #include <cctype>
37 #include <istream>
38 #include <ostream>
39 
40 int main()
41 {
42  return 0;
43 }
44 
int main(int argc, char *argv[])
Definition: blastest.C:94