1 | // -*- C++ -*- |
---|
2 | // |
---|
3 | // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
4 | // |
---|
5 | // Michael A.G. Aivazis |
---|
6 | // California Institute of Technology |
---|
7 | // (C) 1998-2005 All Rights Reserved |
---|
8 | // |
---|
9 | // <LicenseText> |
---|
10 | // |
---|
11 | // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
12 | // |
---|
13 | |
---|
14 | #if !defined(pygeoshapespy_misc_h) |
---|
15 | #define pygeoshapespy_misc_h |
---|
16 | |
---|
17 | // copyright |
---|
18 | extern char pygeoshapespy_copyright__name__[]; |
---|
19 | extern char pygeoshapespy_copyright__doc__[]; |
---|
20 | extern "C" |
---|
21 | PyObject * pygeoshapespy_copyright(PyObject *, PyObject *); |
---|
22 | |
---|
23 | //GeoShape methods |
---|
24 | extern char pygeoshapespy_set_orientation__name__[]; |
---|
25 | extern char pygeoshapespy_set_orientation__doc__[]; |
---|
26 | extern "C" |
---|
27 | PyObject * pygeoshapespy_set_orientation(PyObject *, PyObject *); |
---|
28 | |
---|
29 | extern char pygeoshapespy_set_center__name__[]; |
---|
30 | extern char pygeoshapespy_set_center__doc__[]; |
---|
31 | extern "C" |
---|
32 | PyObject * pygeoshapespy_set_center(PyObject *, PyObject *); |
---|
33 | |
---|
34 | //Sphere constructor & methods |
---|
35 | extern char pyanalmodelpy_new_sphere__name__[]; |
---|
36 | extern char pyanalmodelpy_new_sphere__doc__[]; |
---|
37 | extern "C" |
---|
38 | PyObject * pyanalmodelpy_new_sphere(PyObject *, PyObject *); |
---|
39 | |
---|
40 | static void PyDelSphere(void *); |
---|
41 | |
---|
42 | //Cylinder constructor & methods |
---|
43 | extern char pyanalmodelpy_new_cylinder__name__[]; |
---|
44 | extern char pyanalmodelpy_new_cylinder__doc__[]; |
---|
45 | extern "C" |
---|
46 | PyObject * pyanalmodelpy_new_cylinder(PyObject *, PyObject *); |
---|
47 | |
---|
48 | static void PyDelCylinder(void *); |
---|
49 | |
---|
50 | //Ellipsoid constructor & method |
---|
51 | extern char pyanalmodelpy_new_ellipsoid__name__[]; |
---|
52 | extern char pyanalmodelpy_new_ellipsoid__doc__[]; |
---|
53 | extern "C" |
---|
54 | PyObject * pyanalmodelpy_new_ellipsoid(PyObject *, PyObject *); |
---|
55 | |
---|
56 | static void PyDelEllipsoid(void *); |
---|
57 | |
---|
58 | //Hollow Sphere constructor & methods |
---|
59 | extern char pyanalmodelpy_new_hollowsphere__name__[]; |
---|
60 | extern char pyanalmodelpy_new_hollowsphere__doc__[]; |
---|
61 | extern "C" |
---|
62 | PyObject * pyanalmodelpy_new_hollowsphere(PyObject *, PyObject *); |
---|
63 | |
---|
64 | static void PyDelHollowSphere(void *); |
---|
65 | |
---|
66 | //Single Helix constructor & methods |
---|
67 | extern char pyanalmodelpy_new_singlehelix__name__[]; |
---|
68 | extern char pyanalmodelpy_new_singlehelix__doc__[]; |
---|
69 | extern "C" |
---|
70 | PyObject * pyanalmodelpy_new_singlehelix(PyObject *, PyObject *); |
---|
71 | |
---|
72 | static void PyDelSingleHelix(void *); |
---|
73 | |
---|
74 | #endif |
---|
75 | |
---|
76 | // version |
---|
77 | // $Id$ |
---|
78 | |
---|
79 | // End of file |
---|