17 lines
212 B
C++
17 lines
212 B
C++
|
#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
|