summaryrefslogtreecommitdiff
path: root/TAO/tao/Version.h
diff options
context:
space:
mode:
authorOlli Savia <ops@iki.fi>2016-05-14 18:12:38 +0300
committerOlli Savia <ops@iki.fi>2016-05-14 18:12:38 +0300
commita11d43ae6c40b99fdf8ced5f70bbfa84ad2a20e8 (patch)
treecb342f645cdeff9b8944d8f29d2cdd4261ab8ba4 /TAO/tao/Version.h
parentfffa9f0bcd8a8e73c6929938c9deee404c97a7b7 (diff)
downloadATCD-a11d43ae6c40b99fdf8ced5f70bbfa84ad2a20e8.tar.gz
Added helper macros to compare ACE/TAO versions
Diffstat (limited to 'TAO/tao/Version.h')
-rw-r--r--TAO/tao/Version.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/TAO/tao/Version.h b/TAO/tao/Version.h
index 25390580a30..3aeda303154 100644
--- a/TAO/tao/Version.h
+++ b/TAO/tao/Version.h
@@ -6,3 +6,5 @@
#define TAO_MINOR_VERSION 3
#define TAO_BETA_VERSION 4
#define TAO_VERSION "2.3.4"
+#define TAO_VERSION_CODE 131844
+#define TAO_MAKE_VERSION_CODE(a,b,c) (((a) << 16) + ((b) << 8) + (c))