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