1 2 3 4 5 6 7 8 9 10
#ifndef CONFIG_H #define CONFIG_H namespace config { void read( void ); void update( void ); void save( void ); } #endif //CONFIG_H