Ide alt+c improvements

This commit is contained in:
Mirek Fidler 2025-10-19 09:38:39 +02:00
parent cf05c8ee04
commit 0e8cde1f5d
4 changed files with 48 additions and 29 deletions

View file

@ -14,11 +14,20 @@ struct Foo {
int Test();
};
struct Item { int foo; };
void Simple();
std::vector<String> Bar2(const std::vector<Item>& price, String s);
std::vector<Change> Bar(const std::vector<Item>& price, String s);
std::vector<Foo::Change> Bar(const std::vector<std::vector<Item>>& price, String s);
std::vector<void (*)(int x, int y)> Bar(const std::vector<std::vector<Item>>& price, int x);
typedef void (*PaintHook)(String s);
static Vector<PaintHook>& painthook();
static void InstallPaintHook(PaintHook hook, String s);
static void DeinstallPaintHook(PaintHook hook, String s);
};
namespace Test {