Archive for 'boost' Category
Boost tokenize for the win
21 May 2009String manipulation has historically been a major shortfalling of the C++ language, or at least it was until boost came along. Something as simple as spliting a string up on a delimeter is now made so much easier thanks to the boost::tokenizer and boost string algorithms.
#include <iostream>
#include <string>
#include <boost/foreach.hpp>
#include <boost/tokenizer.hpp>
using namespace std;
using namespace boost;
int […]
More STLPort and Boost problems
25 February 2008As a follow up to a previous post I had about getting boost to play nicely with stlport (here), I decided that I’d like to do all of this with the Intel compiler rather than the standard VIsual Studio compiler… needless to say this created, headaches lets call them.
From the boost getting started […]
Boost + STLport + Visual Studio 2005
15 January 2008Okay so here is the problem I’ve been having, I’m trying to use STLport (5.1.4), Boost (1.34.1) and Visual Studio 2005 and up to now they were not playing nice with one another. Specifically it was the boost::unit_test_framework that was causing the hassles as it has to be recompiled with STLport support. I’ve finally got […]