cellar/include/cellar.hpp
2018-03-13 20:06:15 -07:00

24 lines
349 B
C++

#ifndef __CELLAR_HPP
#define __CELLAR_HPP
#pragma once
#include <string>
#include <vector>
#include "nlohmann/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