diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-03-29 02:55:00 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-03-29 02:55:00 +0000 |
commit | 0b3703fa03d4962c7b45286be4b76f74653eb289 (patch) | |
tree | 61735991855f4eab486f560cbd9cb01a9123263f | |
parent | add tools dir, including one tool for writing svn rev number to header, copie... (diff) | |
download | gpg4usb-0b3703fa03d4962c7b45286be4b76f74653eb289.tar.gz gpg4usb-0b3703fa03d4962c7b45286be4b76f74653eb289.zip |
add default version.h
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1031 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | version.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/version.h b/version.h new file mode 100644 index 0000000..bf3ff9d --- /dev/null +++ b/version.h @@ -0,0 +1,12 @@ +#ifndef VERSION_H
+#define VERSION_H
+
+namespace Version
+{
+ static const int MAJOR = 0;
+ static const int MINOR = 4;
+ static const int REVISION = 0;
+ static const int BUILD = 0;
+}
+
+#endif // VERSION_H
|