假设我有 x.h
class X{
void f();
void g();
}
在x.cpp 中 #include “x.h”
可不可以自动生成
void X::f() {}
void X::g() {}
我目前用的是rtags。
假设我有 x.h
class X{
void f();
void g();
}
在x.cpp 中 #include “x.h”
可不可以自动生成
void X::f() {}
void X::g() {}
我目前用的是rtags。
你需要这个东西