cellar/src/bottles.hpp

17 lines
212 B
C++
Raw Normal View History

2017-03-13 19:03:07 -07:00
#ifndef __BOTTLES_HPP
#define __BOTTLES_HPP
#pragma once
#include <vector>
#include <string>
using namespace std;
namespace cellar {
namespace bottles {
vector<string> list();
}
}
#endif // __BOTTLES_HPP