remove default values for verbose parameters, so as to make deprecated wrappers unused by default

This commit is contained in:
Johann Dreo 2010-10-31 21:36:53 +01:00
commit fc21827eca
4 changed files with 4 additions and 3 deletions

View file

@ -34,6 +34,7 @@ Authors:
#include <iostream>
#include <utils/eoMonitor.h>
#include <utils/eoLogger.h>
#include <eoObject.h>
/**

View file

@ -41,7 +41,7 @@ Authors:
class eoStdoutMonitor : public eoOStreamMonitor
{
public :
eoStdoutMonitor(bool _verbose=true, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
eoStdoutMonitor(bool _verbose, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
eoOStreamMonitor( std::cout, _verbose, _delim, _width, _fill)
{
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoStdutMonitor constructor is deprecated and will be removed in the next release" << std::endl;