45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
|
/*=========================================================================
|
||
|
|
||
|
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
|