#ifndef FDPROV_H #define FDPROV_H #include "dataProvider.h" #include class FileDP:public DataProvider { private: std::string fname; bool eof; public: FileDP(std::string fn=""):fname(fn),eof(false){}; void setFname(std::string fn){fname=fn;}; virtual int getDataSet(DataSet &out){ return 0; } virtual int getLabel(Labels &out){ return 0; }; virtual int open(){return 0;}; virtual bool EOFile(){return eof;}; }; #endif