samp_curve.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = samp_curve.h
  3. //
  4. #ifndef _SAMP_CURVE_H_
  5. #define _SAMP_CURVE_H_
  6. #include <fstream>
  7. using namespace std;
  8. class SampledCurve
  9. {
  10. public:
  11.    SampledCurve(char* data_fname);
  12.    ~SampledCurve(void);
  13.    void Initialize(void);
  14.    double GetValue(double abscissa);
  15. private:
  16.    int Num_Samps;
  17.    ifstream *Data_File;
  18.    double *Ordinate_Vals;
  19.    bool Bypass_Enabled;
  20. };
  21. #endif