I need to use boost.Random in some places of my program and I need to do a froward declaration of boost::hellekalek1995. I've tried to do it like this:
1 2 3 4 5 6 7 8 9
namespace boost
{
class hellekalek1995;
}
class myClass
{
boost::hellekalek1995* var_;
};
But it didn't compile :( The error is "error: using typedef-name 'boost::hellekalek1995' after 'class'"