cellar/include/cellar.hpp

21 lines
312 B
C++
Raw Normal View History

#ifndef __CELLAR_HPP
#define __CELLAR_HPP
#pragma once
#include <string>
#include <vector>
#include "bottles.hpp"
using namespace std;
namespace cellar {
extern void print_header();
2017-03-24 20:01:25 -07:00
extern bottles::Bottle active_bottle;
extern bool dryrun;
2017-03-24 20:01:25 -07:00
extern bool verbose;
}
#endif // __CELLAR_HPP