mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 02:58:10 +00:00
13 lines
144 B
C++
13 lines
144 B
C++
|
struct Gfx {
|
||
|
void opMoveSetShowText();
|
||
|
};
|
||
|
|
||
|
struct Operator {
|
||
|
void (Gfx::*func)();
|
||
|
};
|
||
|
|
||
|
Operator opTab[] = {
|
||
|
{&Gfx::opMoveSetShowText},
|
||
|
};
|
||
|
|