diff options
Diffstat (limited to 'VMSbuild/cmsys/DateStamp.h')
-rw-r--r-- | VMSbuild/cmsys/DateStamp.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/VMSbuild/cmsys/DateStamp.h b/VMSbuild/cmsys/DateStamp.h new file mode 100644 index 0000000..e3b7b45 --- /dev/null +++ b/VMSbuild/cmsys/DateStamp.h @@ -0,0 +1,44 @@ +/*========================================================================= + + Program: KWSys - Kitware System Library + Module: $RCSfile$ + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#ifndef cmsys_DateStamp_h +#define cmsys_DateStamp_h + +/** Version date integer year. The format is CCYY. */ +#define cmsys_DATE_STAMP_YEAR 2009 + +/** Version date integer month. The format is MM. */ +#define cmsys_DATE_STAMP_MONTH 04 + +/** Version date integer day. The format is DD. */ +#define cmsys_DATE_STAMP_DAY 22 + +/** Version date full integer. The format is CCYYMMDD. */ +#define cmsys_DATE_STAMP_FULL 20090422 + +/** Version date string year. The format is "CCYY". */ +#define cmsys_DATE_STAMP_STRING_YEAR "2009" + +/** Version date string month. The format is "MM". */ +#define cmsys_DATE_STAMP_STRING_MONTH "04" + +/** Version date string day. The format is "DD". */ +#define cmsys_DATE_STAMP_STRING_DAY "22" + +/** Version date full string. The format is "CCYYMMDD". */ +#define cmsys_DATE_STAMP_STRING_FULL "20090422" + +/** Version date formatted string. The format is "CCYY-MM-DD". */ +#define cmsys_DATE_STAMP_STRING "2009-04-22" + +#endif |