buildat/src/client/config.h

18 lines
319 B
C++

// http://www.apache.org/licenses/LICENSE-2.0
// Copyright 2014 Perttu Ahola <celeron55@gmail.com>
#pragma once
#include "core/types.h"
#include "core/config.h"
namespace client
{
struct Config: public core::Config
{
Config();
void make_paths_absolute();
bool check_paths();
};
}
// vim: set noet ts=4 sw=4: