Skip to content

Instantly share code, notes, and snippets.

@PhDP
Created January 22, 2012 19:55
Show Gist options
  • Save PhDP/1658527 to your computer and use it in GitHub Desktop.
Save PhDP/1658527 to your computer and use it in GitHub Desktop.
Constants in a header file
// 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