blob: 2969b2c7bcede8f578edbe2865607286cb7626bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CONFIG_H
#define CONFIG_H
#include <boost/program_options.hpp>
namespace po = boost::program_options;
namespace config {
extern po::variables_map vm;
void init();
};
#endif
|