Bugfix: conversion of an empty string to a date or hour object
[AXE.git] / src / dateyacc.y
index 12a09a4..b3b0525 100644 (file)
@@ -1,5 +1,16 @@
 /*$Log: dateyacc.y,v $
-/*Revision 1.1  2002-07-25 08:01:26  arjen
+/*Revision 1.2  2002-09-28 06:58:45  arjen
+/*Bugfix: conversion of an empty string to a date or hour object
+/*now makes the values of such an object 0 (null) instead of giving
+/*a segmentation fault.
+/*The class UTC combines the date and hour classes. The most basic
+/*functions of the UTC class are now implemented.
+/*These include constructors and conversion to and from String objects.
+/*New functions: date::proper(), hour::proper() and UTC::proper().
+/*Return true if the object holds a proper clock time and/or calendar
+/*date; false if at least one value is out of range.
+/*
+/*Revision 1.1  2002/07/25 08:01:26  arjen
 /*First checkin, AXE release 0.2
 /*
  * Revision 1.1  84/09/01  15:01:22  wales
@@ -39,8 +50,8 @@
 
 %{
 #ifdef RCSIDENT
-static char rcsident[] = "$Header: /cvsroot/lib/AXE/src/dateyacc.y,v 1.1 2002-07-25 08:01:26 arjen Exp $";
-#endif RCSIDENT
+static char rcsident[] = "$Header: /cvsroot/lib/AXE/src/dateyacc.y,v 1.2 2002-09-28 06:58:45 arjen Exp $";
+#endif /*RCSIDENT*/
 
 #include <stdio.h>
 #include "parsedate.h"