fix NullLogger to work with the new logging interface

This commit is contained in:
ps 2011-01-08 18:30:16 +00:00
parent a5ee8d8885
commit 4ee4f74a66
2 changed files with 5 additions and 1 deletions

View file

@ -35,7 +35,7 @@ using namespace std;
class NullLogger: public Logger
{
public:
void addMessage(int,string){}; //ignore messages
void addMessage(string,int,int,string){}; //ignore messages
};
#endif //NULLLOGGER_H