diff --git a/documentation/examples/code/engine/smurf/src/GraphicSmurfEngine.cpp b/documentation/examples/code/engine/smurf/src/GraphicSmurfEngine.cpp index 26d95ecd..ca5f2f29 100644 --- a/documentation/examples/code/engine/smurf/src/GraphicSmurfEngine.cpp +++ b/documentation/examples/code/engine/smurf/src/GraphicSmurfEngine.cpp @@ -15,7 +15,6 @@ #include -#include #include #include #include diff --git a/etesian/src/GraphicEtesianEngine.cpp b/etesian/src/GraphicEtesianEngine.cpp index f53c3cba..05e11520 100644 --- a/etesian/src/GraphicEtesianEngine.cpp +++ b/etesian/src/GraphicEtesianEngine.cpp @@ -15,7 +15,6 @@ #include -#include #include #include #include diff --git a/hurricane/src/viewer/CellImage.cpp b/hurricane/src/viewer/CellImage.cpp index 367adafa..0c264a1d 100644 --- a/hurricane/src/viewer/CellImage.cpp +++ b/hurricane/src/viewer/CellImage.cpp @@ -17,8 +17,8 @@ #include #include +#include #include -#include #include #include #include "hurricane/configuration/Configuration.h" @@ -200,7 +200,7 @@ namespace Hurricane { //cerr << "(w,h) = (" << w << "," << h << ")" << endl; //cerr << "(dw,dh) = (" << drawingWidth << "," << drawingHeight << ")" << endl; - CellWidget::PainterCb_t cb = boost::bind( &CellImage::pageDecorate, this, _1 ); + CellWidget::PainterCb_t cb = std::bind( &CellImage::pageDecorate, this, std::placeholders::_1 ); _cellWidget->copyToImage( _image, cb ); return _image; diff --git a/hurricane/src/viewer/CellPrinter.cpp b/hurricane/src/viewer/CellPrinter.cpp index a8be9bee..446aed12 100644 --- a/hurricane/src/viewer/CellPrinter.cpp +++ b/hurricane/src/viewer/CellPrinter.cpp @@ -16,8 +16,8 @@ #include #include +#include #include -#include #include #include #include "hurricane/configuration/Configuration.h" @@ -378,7 +378,7 @@ namespace Hurricane { //cerr << " (xpaper,ypaper) = (" << _xpaper << "," << _ypaper << ")" << endl; //cerr << " (dw,dh) = (" << _drawingWidth << "," << _drawingHeight << ")" << endl; - CellWidget::PainterCb_t cb = boost::bind( &CellPrinter::pageDecorate, this, _1 ); + CellWidget::PainterCb_t cb = std::bind( &CellPrinter::pageDecorate, this, std::placeholders::_1 ); _cellWidget->copyToPrinter( _xpaper, _ypaper, _printer, cb ); _printer = NULL; diff --git a/katana/src/GraphicKatanaEngine.cpp b/katana/src/GraphicKatanaEngine.cpp index fefac854..7b18d5a3 100644 --- a/katana/src/GraphicKatanaEngine.cpp +++ b/katana/src/GraphicKatanaEngine.cpp @@ -14,7 +14,7 @@ // +-----------------------------------------------------------------+ -#include +#include #include #include #include @@ -223,7 +223,7 @@ namespace Katana { KatanaEngine* katana = KatanaEngine::get( cell ); if (not katana) { katana = KatanaEngine::create( cell ); - katana->setPostEventCb( boost::bind(&GraphicKatanaEngine::postEvent,this) ); + katana->setPostEventCb( std::bind(&GraphicKatanaEngine::postEvent,this) ); katana->setViewer( _viewer ); katana->printConfiguration(); katana->digitalInit(); diff --git a/tramontana/src/GraphicTramontanaEngine.cpp b/tramontana/src/GraphicTramontanaEngine.cpp index b3380a7d..ab1c7d24 100644 --- a/tramontana/src/GraphicTramontanaEngine.cpp +++ b/tramontana/src/GraphicTramontanaEngine.cpp @@ -16,7 +16,7 @@ // +-----------------------------------------------------------------+ -#include +#include #include #include #include diff --git a/tutorial/src/GraphicTutorialEngine.cpp b/tutorial/src/GraphicTutorialEngine.cpp index a6a72744..5c56575a 100644 --- a/tutorial/src/GraphicTutorialEngine.cpp +++ b/tutorial/src/GraphicTutorialEngine.cpp @@ -14,7 +14,7 @@ // +-----------------------------------------------------------------+ -#include +#include #include #include #include