cellar/include/cellar.hpp

24 lines
349 B
C++
Raw Normal View History

#ifndef __CELLAR_HPP
#define __CELLAR_HPP
#pragma once
#include <string>
#include <vector>
2018-03-13 20:06:15 -07:00
#include "nlohmann/json.hpp"
2017-06-09 13:12:48 -07:00
#include "bottles.hpp"
using namespace std;
2017-06-09 13:12:48 -07:00
using nlohmann::json;
namespace cellar {
extern void print_header();
2017-03-24 20:01:25 -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;
}
#endif // __CELLAR_HPP