cellar/include/cellar.hpp
2017-06-09 13:12:48 -07:00

24 lines
340 B
C++

#ifndef __CELLAR_HPP
#define __CELLAR_HPP
#pragma once
#include <string>
#include <vector>
#include "json.hpp"
#include "bottles.hpp"
using namespace std;
using nlohmann::json;
namespace cellar {
extern void print_header();
extern bool dryrun;
extern bool verbose;
extern json global_config;
}
#endif // __CELLAR_HPP