Created
January 22, 2012 19:55
-
-
Save PhDP/1658527 to your computer and use it in GitHub Desktop.
Constants in a header file
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
// common.h | |
#ifndef COMMON_H_ | |
#define COMMON_H_ | |
#ifndef EAM_CONSTANT1 | |
#define EAM_CONSTANT1 0.5929439 | |
#endif | |
#ifndef EAM_VERSION | |
#define EAM_VERSION "0.1" | |
#endif | |
#ifndef EAM_ANOTHER_CONSTANT | |
#define EAM_ANOTHER_CONSTANT 500.0 | |
#endif | |
#endif /* COMMON_H_ */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment