c++ Programming Glossary: mydefine
Making something both a C identifier and a string? http://stackoverflow.com/questions/126277/making-something-both-a-c-identifier-and-a-string Initial guess You could add an #include file containing myDefine NAME_ONE myDefine NAME_TWO myDefine NAME_THREE Then use it twice.. could add an #include file containing myDefine NAME_ONE myDefine NAME_TWO myDefine NAME_THREE Then use it twice like #define.. file containing myDefine NAME_ONE myDefine NAME_TWO myDefine NAME_THREE Then use it twice like #define myDefine a a enum..
|