blob: c535db1c59d64cee27e44d89269cd22f3feb2824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
** \file src/version.hh
** \brief Version definitions.
*/
#pragma once
/// \name Program identity.
/// \{
/// Name of this program.
extern const char* program_name;
/// Version string of this program.
extern const char* program_version;
/// Bug report address of this program.
extern const char* program_bug_address;
/// Describe program and accepted arguments.
extern const char* program_doc;
extern const char* program_args_doc;
/// \}
|