File size: 302 Bytes
1ce325b
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#include <boost/program_options.hpp>

#include <cstddef>
#include <string>

namespace lm {

// Create a boost program option for data sizes.  This parses sizes like 1T and 10k.
boost::program_options::typed_value<std::string> *SizeOption(std::size_t &to, const char *default_value);

} // namespace lm