mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
Ide alt+c improvements
This commit is contained in:
parent
cf05c8ee04
commit
0e8cde1f5d
4 changed files with 48 additions and 29 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue