You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
19 lines
386 B
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
namespace Version{
|
|
|
|
//Software Status
|
|
static const char STATUS[] = "RCx [nod.oe7drt.com]";
|
|
|
|
//Miscellaneous Version Types
|
|
static const char VERSION_STRING [] = "0.6.0";
|
|
|
|
//Copyright line usable in the program
|
|
static const char COPYRIGHT [] = "Copyright ©2015-2023 Dominic Reich\n";
|
|
|
|
}
|
|
#endif //VERSION_H
|
|
|
|
/* vim: set ts=2 sw=2 tw=0 et :*/
|