/src/update.h
C Header | 22 lines | 10 code | 7 blank | 5 comment | 0 complexity | 30445176b8fd27e415dc4b2f1c3179e9 MD5 | raw file
Possible License(s): BSD-2-Clause
1#pragma once
2
3/*
4 * Maciej Pacut, 2011
5 *
6 * update.h
7 */
8
9
10#include <string>
11
12#include "boost/filesystem.hpp"
13namespace fs = boost::filesystem;
14
15#include <boost/program_options.hpp>
16namespace po = boost::program_options;
17
18#include "translation.h"
19#include "fetch.h"
20#include "config.h"
21
22int update(const po::variables_map& config_file);