// asigps.h // Eric Aubourg CEA/DAPNIA/SPP aout 1999 #ifndef ASIGPS_H #define ASIGPS_H #include "auxinterpgps.h" #include class ASIGPS : public AuxInterpGPS { public: ASIGPS() {} ASIGPS(string const& filename); void readFile(string const& filename); virtual AuxGPS* clone() {return new ASIGPS(*this);} protected: }; #endif