/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */

/*
 Copyright (C) 2004 FIMAT Group
 Copyright (C) 2007 StatPro Italia srl

 This file is part of QuantLib, a free-software/open-source library
 for financial quantitative analysts and developers - http://quantlib.org/

 QuantLib is free software: you can redistribute it and/or modify it
 under the terms of the QuantLib license.  You should have received a
 copy of the license along with this program; if not, please email
 <quantlib-dev@lists.sf.net>. The license is also available online at
 <http://quantlib.org/license.shtml>.

 This program is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE.  See the license for more details.
*/

/*! \file malaysia.hpp
    \brief malaysia calendars
*/

#ifndef quantlib_malaysia_calendar_hpp
#define quantlib_malaysia_calendar_hpp

#include <ql/time/calendar.hpp>

namespace QuantLib {

    //! Malaysia calendars
    /*! Holidays:
        <ul>
        <li>Saturdays</li>
        <li>Sundays</li>
        <li>New Year's Day, January 1st (possibly moved to Monday)</li>
        <li>Federal Territory day Feburary 1st (possibly moved to Monday)</li>
        <li>Labor Day May 1 (possibly moved to Monday)</li>
        <li>National Day August 31 (possibly moved to Monday)</li>
        <li>Christmas, December 25th</li>
        </ul>

        Other holidays for which no rule is given
        (data available for 2002-2008 only:)
        <ul>
        <li>Lunar New Year</li>
        <li>Chinese New Year</li>
        <li>Hari Rayi Haji</li>
        <li>Awal Muharram</li>
        <li>Nabi Muhammad</li>
        <li>Wesak Day</li>
        <li>Deepavali</li>
        <li>Hari Raya Puasa</li>
        <li>Muharram</li>
        <li>Mohammeds birthday</li>

        </ul>
        \ingroup calendars
    */
    class Malaysia : public Calendar {
      private:
        class Impl : public Calendar::Impl {
          public:
            std::string name() const { return "Malaysia"; }
            bool isBusinessDay(const Date&) const;
        };
      public:
        Malaysia();
    };

}


#endif
