/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2005, 2006 Piter Dias 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 brazil.hpp \brief Brazilian calendar */ #ifndef quantlib_brazilian_calendar_hpp #define quantlib_brazilian_calendar_hpp #include namespace QuantLib { //! Brazilian calendar /*! Banking holidays:
  • Saturdays
  • Sundays
  • New Year's Day, January 1st
  • Tiradentes's Day, April 21th
  • Labour Day, May 1st
  • Independence Day, September 21th
  • Nossa Sra. Aparecida Day, October 12th
  • Dead Day, October 2nd
  • Republic Day, November 15th
  • Christmas, December 25th
  • Passion of Christ
  • Carnival
  • Corpus Christi
\ingroup calendars \test the correctness of the returned results is tested against a list of known holidays. */ class Brazil : public Calendar { private: class SettlementImpl : public Calendar::WesternImpl { public: std::string name() const { return "Brazil"; } bool isBusinessDay(const Date&) const; }; public: //! Brazilian calendars enum Market { Settlement //!< generic settlement calendar }; Brazil(Market market = Settlement); }; } #endif