cellar/include/cellar.hpp

20 lines
288 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 verbose;
}
#endif // __CELLAR_HPP