cellar/include/help.hpp
2017-03-24 23:37:49 -07:00

17 lines
262 B
C++

#ifndef __HELP_HPP
#define __HELP_HPP
#pragma once
#include <string>
using namespace std;
namespace cellar {
namespace help {
extern void set_description(string,string);
extern string get_description(string);
}
}
#endif // __HELP_HPP