123456789101112131415161718192021222324252627282930313233 |
|
/*******************************************************************************
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 const uint id() {
return THAI;
}
}
|