Given foo.hpp
class Foo
{
public:
void MethodA()
{
}
int MerhodB()
{
return 2+3;
}
}
I need a tool to create two files foo.cpp and foo.hpp. For instance,
foo.hpp
class Foo
{
public:
void MethodA();
int MerhodB();
}
foo.cpp
void Foo::MethodA()
{
}
int Foo::MerhodB()
{
return 2+3;
}
I tried Lazy C ++, but it does not work for me. Any other suggestions?
Edit: I do not use Windows, so please avoid Visual Studio tools. Thanks
source
share