diff tango/tango/time/chrono/ThaiBuddhist.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tango/tango/time/chrono/ThaiBuddhist.d	Fri Jan 11 17:57:40 2008 +0100
@@ -0,0 +1,32 @@
+/*******************************************************************************
+
+        copyright:      Copyright (c) 2005 John Chapman. All rights reserved
+
+        license:        BSD style: $(LICENSE)
+
+        version:        Mid 2005: Initial release
+                        Apr 2007: reshaped                        
+
+        author:         John Chapman, Kris
+
+******************************************************************************/
+
+module tango.time.chrono.ThaiBuddhist;
+
+private import tango.time.chrono.GregorianBased;
+
+
+/**
+ * $(ANCHOR _ThaiBuddhist)
+ * Represents the Thai Buddhist calendar.
+ */
+public class ThaiBuddhist : GregorianBased {
+  /**
+   * $(I Property.) Overridden. Retrieves the identifier associated with the current calendar.
+   * Returns: An integer representing the identifier of the current calendar.
+   */
+  public override uint id() {
+    return THAI;
+  }
+
+}