/*============================================================================
  KWSys - Kitware System Library
  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium

  Distributed under the OSI-approved BSD License (the "License");
  see accompanying file Copyright.txt for details.

  This software is distributed WITHOUT ANY WARRANTY; without even the
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the License for more information.
============================================================================*/
#ifndef vtksys_DateStamp_h
#define vtksys_DateStamp_h

/** Version date integer year.  The format is CCYY.  */
#define vtksys_DATE_STAMP_YEAR          2012

/** Version date integer month.  The format is MM.  */
#define vtksys_DATE_STAMP_MONTH         03

/** Version date integer day.  The format is DD.  */
#define vtksys_DATE_STAMP_DAY           01

/** Version date full integer.  The format is CCYYMMDD.  */
#define vtksys_DATE_STAMP_FULL          20120301

/** Version date string year.  The format is "CCYY".  */
#define vtksys_DATE_STAMP_STRING_YEAR  "2012"

/** Version date string month.  The format is "MM".  */
#define vtksys_DATE_STAMP_STRING_MONTH "03"

/** Version date string day.  The format is "DD".  */
#define vtksys_DATE_STAMP_STRING_DAY   "01"

/** Version date full string.  The format is "CCYYMMDD".  */
#define vtksys_DATE_STAMP_STRING_FULL  "20120301"

/** Version date formatted string.  The format is "CCYY-MM-DD".  */
#define vtksys_DATE_STAMP_STRING       "2012-03-01"

#endif
