]>
Commit | Line | Data |
---|---|---|
a20c0d0f PW |
1 | // Copyright (c) 2012 The Bitcoin developers |
2 | // Distributed under the MIT/X11 software license, see the accompanying | |
3 | // file license.txt or http://www.opensource.org/licenses/mit-license.php. | |
4 | #ifndef BITCOIN_VERSION_H | |
5 | #define BITCOIN_VERSION_H | |
6 | ||
7 | #include <string> | |
8 | ||
9 | extern const std::string CLIENT_NAME; | |
10 | extern const std::string CLIENT_BUILD; | |
11 | extern const std::string CLIENT_DATE; | |
12 | extern const int CLIENT_VERSION; | |
13 | ||
14 | #endif |