/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2005 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 . 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 ukraine.hpp \brief Ukrainian calendars */ #ifndef quantlib_ukrainian_calendar_hpp #define quantlib_ukrainian_calendar_hpp #include namespace QuantLib { //! Ukrainian calendars /*! Holidays for the Ukrainian stock exchange (data from ):
  • Saturdays
  • Sundays
  • New Year's Day, January 1st
  • Orthodox Christmas, January 7th
  • International Women's Day, March 8th
  • Easter Monday
  • Holy Trinity Day, 50 days after Easter
  • International Workers’ Solidarity Days, May 1st and 2nd
  • Victory Day, May 9th
  • Constitution Day, June 28th
  • Independence Day, August 24th
Holidays falling on a Saturday or Sunday are moved to the following Monday. \ingroup calendars */ class Ukraine : public Calendar { private: class UseImpl : public Calendar::OrthodoxImpl { public: std::string name() const { return "Ukrainian stock exchange"; } bool isBusinessDay(const Date&) const; }; public: enum Market { USE //!< Ukrainian stock exchange }; Ukraine(Market m = USE); }; } #endif