Oops, forgot to make operator() return an eoMonitor
This commit is contained in:
parent
481bfba8bf
commit
bd0cc50be9
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ class eoFileMonitor : public eoMonitor
|
||||||
{
|
{
|
||||||
public :
|
public :
|
||||||
eoFileMonitor(std::string _filename, std::string _delim = ",") : filename(_filename), delim(_delim), firsttime(true) {}
|
eoFileMonitor(std::string _filename, std::string _delim = ",") : filename(_filename), delim(_delim), firsttime(true) {}
|
||||||
eoMinitor& operator()(void);
|
eoMonitor& operator()(void);
|
||||||
|
|
||||||
private :
|
private :
|
||||||
std::string filename;
|
std::string filename;
|
||||||
|
|
|
||||||
Reference in a new issue