///////////////////////////////////////////////////////// // // project.h // // Jeff Ondich, 4/14/04 // // Part of the Makefile lab exercise. // //////////////////////////////////////////////////////// #ifndef PROJECT_H #define PROJECT_H #ifdef DEBUG const bool kDebugging = true; #else const bool kDebugging = false; #endif int doSomething( int n ); extern int gSomeInteger; #endif