I'm writing a scientific program with lots of knobs. Rather than constantly add and remove command-line options, I've been adding scoped extern variables for extra bits of configuration. These variables are used only in one local scope, and defined together in a dedicated source file args.cpp. That file includes no headers, so it only takes a second to recompile it and relink the executable to change any options.
// big_slow_compiling_source.cpp:
{
extern double fudge_rate;
quantity += correction * fudge_rate;
}
// args.cpp:
/* Configuration for big_slow_compiling_source.cpp: */
double fudge_rate = 3.2;
Is there a name for this idiom? I've been calling them "local externs" to myself but there must be better terminology.
Any known pitfalls?
args.cpp, I suppose. But any other error I can think of would be flagged by the linker. – Potatoswatter Nov 28 '12 at 9:21extern int foo; foo = 42;anywhere. – melpomene Nov 28 '12 at 9:22constwould "fix" that.. – Potatoswatter Nov 28 '12 at 9:25extern int foo; do_stuff_with(foo);anywhere. How exactly does not declaring them in a header file "guarantee" anything? – melpomene Nov 28 '12 at 9:27