Changeset 12017
- Timestamp:
- 04/16/12 19:34:38 (13 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/python/io/CheckNumPythonArguments.cpp
r12011 r12017 9 9 #endif 10 10 11 12 #if defined(_HAVE_PYTHON_) && defined(_SERIAL_)13 11 14 12 #define PY_ARRAY_UNIQUE_SYMBOL PythonIOSymbol … … 37 35 return 1; 38 36 } 39 40 #endif -
issm/trunk-jpl/src/c/python/io/FetchPythonData.cpp
r12011 r12017 16 16 #include "../../shared/shared.h" 17 17 18 #if defined(_HAVE_PYTHON_) && defined(_SERIAL_)19 18 /*FUNCTION FetchData(char** pstring,PyObject* py_unicode){{{1*/ 20 19 void FetchData(char** pstring,PyObject* py_unicode){ … … 72 71 } 73 72 /*}}}*/ 74 #endif -
issm/trunk-jpl/src/c/python/io/WritePythonData.cpp
r12011 r12017 8 8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 9 9 #endif 10 11 #if defined(_HAVE_PYTHON_) && defined(_SERIAL_)12 10 13 11 #define PY_ARRAY_UNIQUE_SYMBOL PythonIOSymbol … … 66 64 } 67 65 /*}}}*/ 68 69 #endif -
issm/trunk-jpl/src/c/python/objects/Bamg/BamgGeom.cpp
r12011 r12017 1 /*!\file BamgGeom.cpp 2 */ 3 1 4 #include <stdio.h> 2 #include "../objects.h" 3 #include "../../io/io.h" 4 #include "../../shared/shared.h" 5 #include "../../../objects/objects.h" 6 #include "../../../io/io.h" 7 #include "../../../shared/shared.h" 8 #include "../../io/pythonio.h" 9 5 10 6 11 /*Constructors/Destructors*/ -
issm/trunk-jpl/src/c/python/objects/Bamg/BamgMesh.cpp
r12011 r12017 1 /*!\file BamgMesh.cpp 2 */ 3 1 4 #include <stdio.h> 2 #include "../objects.h" 3 #include "../../io/io.h" 4 #include "../../shared/shared.h" 5 #include "../../../objects/objects.h" 6 #include "../../../io/io.h" 7 #include "../../../shared/shared.h" 8 #include "../../io/pythonio.h" 9 5 10 6 11 /*Constructors/Destructors*/ -
issm/trunk-jpl/src/c/python/objects/Bamg/BamgOpts.cpp
r12011 r12017 1 /*!\file BamgOpts.cpp 2 */ 3 1 4 #include <stdio.h> 2 #include "../../shared/shared.h" 3 #include "../../include/include.h" 4 #include "../objects.h" 5 #include "../../io/io.h" 5 #include "../../../objects/objects.h" 6 #include "../../../io/io.h" 7 #include "../../../shared/shared.h" 8 #include "../../io/pythonio.h" 9 #include "../../../include/include.h" 6 10 7 11 /*Constructors/Destructors*/ -
issm/trunk-jpl/src/c/python/python-binding.h
r12015 r12017 4 4 #include "./io/pythonio.h" 5 5 #include "./include/python_macros.h" 6 6 7 #endif -
issm/trunk-jpl/src/c/toolkits/python/pythonincludes.h
r11974 r12017 9 9 #include "Python.h" 10 10 #include "arrayobject.h" 11 12 13 11 14 12 #ifdef _HAVE_BOOST_ -
issm/trunk-jpl/src/c/toolkits/toolkits.h
r12009 r12017 12 12 #endif 13 13 14 #if defined(_HAVE_PYTHON_) && defined(_SERIAL_)14 #ifdef _HAVE_PYTHON_ 15 15 #include "./python/pythonincludes.h" 16 16 #endif -
issm/trunk-jpl/test/NightlyRun/test101.py
r12011 r12017 1 1 from model import * 2 from TriMesh .Pythonimport *2 from TriMesh import * 3 3 4 4 #md=model()
Note:
See TracChangeset
for help on using the changeset viewer.