Skip to content

Instantly share code, notes, and snippets.

@takiguri
Last active June 15, 2018 09:42
Show Gist options
  • Save takiguri/90abb4fde7966f297dca916b97b242d6 to your computer and use it in GitHub Desktop.
Save takiguri/90abb4fde7966f297dca916b97b242d6 to your computer and use it in GitHub Desktop.
C++ Header Guards
#ifndef HERO_H
#define HERO_H
////////////////////////////////////////////////////////////////////////////////
class Hero {
int power;
public:
void hyperspaceJump(int);
};
////////////////////////////////////////////////////////////////////////////////
#endif // HERO_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment