PageRenderTime 59ms CodeModel.GetById 24ms app.highlight 12ms RepoModel.GetById 7ms app.codeStats 0ms

/src/update.h

https://bitbucket.org/maciekpacut/magazyn
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);