/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2000, 2001, 2002, 2003 RiskMap 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 . The license is also available online at . 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 southafrica.hpp \brief South-African calendar */ #ifndef quantlib_south_african_calendar_hpp #define quantlib_south_african_calendar_hpp #include namespace QuantLib { //! South-African calendar /*! Holidays:
  • Saturdays
  • Sundays
  • New Year's Day, January 1st (possibly moved to Monday)
  • Good Friday
  • Family Day, Easter Monday
  • Human Rights Day, March 21st (possibly moved to Monday)
  • Freedom Day, April 27th (possibly moved to Monday)
  • Workers Day, May 1st (possibly moved to Monday)
  • Youth Day, June 16th (possibly moved to Monday)
  • National Women's Day, August 9th (possibly moved to Monday)
  • Heritage Day, September 24th (possibly moved to Monday)
  • Day of Reconciliation, December 16th (possibly moved to Monday)
  • Christmas December 25th
  • Day of Goodwill December 26th (possibly moved to Monday)
\ingroup calendars */ class SouthAfrica : public Calendar { private: class Impl : public Calendar::WesternImpl { public: std::string name() const { return "South Africa"; } bool isBusinessDay(const Date&) const; }; public: SouthAfrica(); }; } #endif