12 lines
166 B
C++
12 lines
166 B
C++
|
#ifndef __VERSION_HPP
|
||
|
#define __VERSION_HPP
|
||
|
#pragma once
|
||
|
|
||
|
namespace cellar {
|
||
|
namespace version {
|
||
|
string short_version();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // __VERSION_HPP
|