Hello all,

I am using Qt on Windows with MinGW. I added boost library by using INCLUDEPATH in the .pro file and compiled the sample program from boost's Getting Started on Windows.

using namespace boost::lambda;
typedef std::istream_iterator<int> in;

std::for_each(
in(std::cin), in(), std::cout << (_1 * 3) << " " );

Now I receive the errors:
error: `cin' is not a member of `std'
error: `cout' is not a member of `std'

Do namespaces std and boost interfere?
Can I find a tutorial howto use Qt with Boost somewhere?