Changeset 3572 in Sophya for trunk/SophyaPI/PIext/pipodrw.h
- Timestamp:
- Feb 7, 2009, 10:50:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pipodrw.h
r3145 r3572 13 13 #include "hist2err.h" 14 14 15 #ifdef SANS_EVOLPLANCK16 class GeneralFunction;17 #else18 15 namespace SOPHYA {class GeneralFunction;} 19 #endif20 16 21 17 class PIGFFDrawer : public PIDrawer { … … 34 30 35 31 36 #ifdef SANS_EVOLPLANCK37 #include "cvector.h"38 #include "matrix.h"39 40 // Adaptateur de vecteurs Peida++ a P1DArrayAdapter41 class POVectorAdapter : public P1DArrayAdapter {42 public :43 POVectorAdapter(Vector* v, bool ad=false);44 virtual ~POVectorAdapter();45 virtual double Value(int i);46 47 protected:48 bool aDel;49 Vector* mVec;50 };51 52 // Adaptateur de matrice Peida++ a P2DArrayAdapter53 // Attention MatrixAdapter(X=Colonne, Y= Row) = Matrix(row, col)54 class POMatrixAdapter : public P2DArrayAdapter {55 public :56 POMatrixAdapter(Matrix* mtx, bool ad=false);57 virtual ~POMatrixAdapter();58 59 virtual double Value(int ix, int iy);60 61 protected:62 bool aDel;63 Matrix* mMtx;64 };65 66 #endif // SANS_EVOLPLANCK67 68 32 #endif
Note:
See TracChangeset
for help on using the changeset viewer.