21 lines
312 B
C++
21 lines
312 B
C++
#ifndef __CELLAR_HPP
|
|
#define __CELLAR_HPP
|
|
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "bottles.hpp"
|
|
|
|
using namespace std;
|
|
|
|
namespace cellar {
|
|
extern void print_header();
|
|
|
|
extern bottles::Bottle active_bottle;
|
|
|
|
extern bool dryrun;
|
|
extern bool verbose;
|
|
}
|
|
|
|
#endif // __CELLAR_HPP
|