summaryrefslogtreecommitdiffstats
path: root/VMSbuild/cmsys/DateStamp.h
blob: e3b7b452e490e7942324db8aaa75f2f3c10f25d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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