Hi!
I think it would be nice to have a forward declare feature, e.g. if you hover over a class and press Alt+Shift+Q, "forward declare" could be an action. It may not be a show stopper but could still come handy.
Example:
#include "..."
void func()
{
FancyClass *instance;
}
Imagine we hover over "instance" and press forward declare.
This could result in something like:
#include "..."
class FancyClass;
void func()
{
FancyClass *instance;
}
Thanks!