c++ Programming Glossary: foo_debug
Library headers and #define http://stackoverflow.com/questions/20833226/library-headers-and-define file #ifndef FOO_HPP_ #define FOO_HPP_ #include config.hpp FOO_DEBUG class Foo public int result const private int a_ #ifdef FOO_DEBUG.. class Foo public int result const private int a_ #ifdef FOO_DEBUG int b_ #endif FOO_DEBUG #endif FOO_HPP_ config.hpp is output.. result const private int a_ #ifdef FOO_DEBUG int b_ #endif FOO_DEBUG #endif FOO_HPP_ config.hpp is output of configure_file command..
|