views:

55

answers:

1

I tend to prototype C++ classes as a self-contained class, i.e. like:

class BlahBlahBlah
{
public:
  void SomeMethod()
  {
    // some code here
  }
};

and then later when I am happy with the design I will turn it into a .h/.cpp pair. This is mostly a mechanical task so is there any tool out there that can help with that?

+1  A: 

Try Lzz.

Ferruccio
danio