Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //globals.h
- namespace Globals {
- bool _use_shares();
- static const bool use_shares = _use_shares();
- }
- //globals.cpp
- bool Globals::_use_shares()
- {
- bool b;
- //do stuff
- return b;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement