Changeset 13226
- Timestamp:
- 09/04/12 08:48:13 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/python/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/python/io/WritePythonData.cpp
r13056 r13226 33 33 34 34 }/*}}}*/ 35 /*FUNCTION WriteData(PyObject* tuple,int index, Matrix* matrix){{{*/36 void WriteData(PyObject* tuple,int index, Matrix* matrix){35 /*FUNCTION WriteData(PyObject* tuple,int index,SeqMat<double>* matrix){{{*/ 36 void WriteData(PyObject* tuple,int index,SeqMat<double>* matrix){ 37 37 38 38 int M,N; … … 49 49 PyTuple_SetItem(tuple, index, array); 50 50 51 52 51 }/*}}}*/ 53 /*FUNCTION WriteData(PyObject* py_tuple,int index, Vector* vector){{{*/54 void WriteData(PyObject* tuple,int index, Vector* vector){52 /*FUNCTION WriteData(PyObject* py_tuple,int index,SeqVec<double>* vector){{{*/ 53 void WriteData(PyObject* tuple,int index,SeqVec<double>* vector){ 55 54 56 55 int M; -
issm/trunk-jpl/src/c/python/io/pythonio.h
r13056 r13226 30 30 void WriteData(PyObject* py_tuple, int index, int integer); 31 31 void WriteData(PyObject* py_tuple, int index, char* string); 32 void WriteData(PyObject* py_tuple, int index, Matrix* matrix); 33 void WriteData(PyObject* py_tuple, int index, Vector* vector); 34 32 void WriteData(PyObject* py_tuple, int index, SeqMat<double>* matrix); 33 void WriteData(PyObject* py_tuple, int index, SeqVec<double>* vector); 35 34 36 35 //void FetchData(DataSet** pdataset,PyObject* py_ref);
Note:
See TracChangeset
for help on using the changeset viewer.