2017-03-22 23:23:15 -07:00
|
|
|
#ifndef __CELLAR_HPP
|
|
|
|
#define __CELLAR_HPP
|
|
|
|
#pragma once
|
2017-03-23 19:09:36 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-06-09 13:12:48 -07:00
|
|
|
#include "json.hpp"
|
|
|
|
|
2017-03-24 21:50:32 -07:00
|
|
|
#include "bottles.hpp"
|
|
|
|
|
2017-03-23 19:09:36 -07:00
|
|
|
using namespace std;
|
2017-06-09 13:12:48 -07:00
|
|
|
using nlohmann::json;
|
2017-03-22 23:23:15 -07:00
|
|
|
|
|
|
|
namespace cellar {
|
2017-03-23 19:09:36 -07:00
|
|
|
extern void print_header();
|
2017-03-24 20:01:25 -07:00
|
|
|
|
2017-03-27 22:14:41 -07:00
|
|
|
extern bool dryrun;
|
2017-03-24 20:01:25 -07:00
|
|
|
extern bool verbose;
|
2017-06-09 13:12:48 -07:00
|
|
|
|
|
|
|
extern json global_config;
|
2017-03-22 23:23:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __CELLAR_HPP
|