KAYLukas / FoxyC

Adds class-oriented syntaxis to C, by using macro's only.
0 stars 0 forks source link

Instanceof #9

Open KAYLukas opened 10 years ago

KAYLukas commented 10 years ago

Instanceof code should be implemented, should be pretty straight forward with an extra syntax logic function. Usage:

int isINode = foxy(node instanceof INode);

For checking for direct implementation node.class == getClass(INode) can be used.