Changeset 3572 in Sophya for trunk/SophyaPI/PIext/pipodrw.h


Ignore:
Timestamp:
Feb 7, 2009, 10:50:34 PM (17 years ago)
Author:
cmv
Message:

char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pipodrw.h

    r3145 r3572  
    1313#include "hist2err.h"
    1414
    15 #ifdef SANS_EVOLPLANCK
    16 class GeneralFunction;
    17 #else
    1815namespace SOPHYA {class GeneralFunction;}
    19 #endif
    2016
    2117class PIGFFDrawer : public PIDrawer {
     
    3430
    3531
    36 #ifdef SANS_EVOLPLANCK
    37 #include "cvector.h"
    38 #include "matrix.h"
    39 
    40 // Adaptateur de vecteurs Peida++ a P1DArrayAdapter
    41 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 P2DArrayAdapter
    53 // 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_EVOLPLANCK
    67 
    6832#endif
Note: See TracChangeset for help on using the changeset viewer.