|
From: Peter S. <sz...@us...> - 2004-04-21 14:34:59
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5925/NHibernate Modified Files: NHibernate.cs NHibernate-1.1.csproj Log Message: Added timespan. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** NHibernate-1.1.csproj 14 Apr 2004 14:45:36 -0000 1.20 --- NHibernate-1.1.csproj 21 Apr 2004 14:31:12 -0000 1.21 *************** *** 1803,1806 **** --- 1803,1811 ---- /> <File + RelPath = "Type\TimeSpanType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Type\TimestampType.cs" SubType = "Code" Index: NHibernate.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** NHibernate.cs 14 Apr 2004 14:40:51 -0000 1.15 --- NHibernate.cs 21 Apr 2004 14:31:09 -0000 1.16 *************** *** 111,114 **** --- 111,119 ---- /// <summary> + /// NHibernate Ticks type + /// </summary> + public static readonly NullableType TimeSpan = TypeFactory.GetTimeSpanType(); + + /// <summary> /// NHibernate timestamp type /// </summary> |