Last active
March 1, 2020 13:22
-
-
Save nromashchenko/be8eb04611745cb966fcc7a4507802c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void myKeyHandler() | |
{ | |
printf("myKeyHandler"); | |
} | |
class Foo | |
{ | |
public: | |
static void myKeyHandler() | |
{ | |
printf("myKeyHandler in Foo"); | |
} | |
}; | |
int main() | |
{ | |
myKeyHandler(); | |
Foo::myKeyHandler(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment