Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

time.HolidayRepository.h

00001 /*----------------------------------------------------------------------------
00002   SWORD 2000 - Software With Objects for Rapid Development
00003   Copyright (C) 2003 Eric NICOLAS
00004   ----------------------------------------------------------------------------
00005   SWORD is free software; you can redistribute it and/or modify
00006   it under the terms of the GNU Lesser General Public License as published by
00007   the Free Software Foundation; either version 2 of the License, or
00008   (at your option) any later version.
00009 
00010   SWORD is distributed in the hope that it will be useful,
00011   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013   GNU Lesser General Public License for more details.
00014 
00015   You should have received a copy of the GNU Lesser General Public License
00016   along with SWORD; if not, write to the Free Software
00017   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018   --------------------------------------------------------------------------*/
00019 #ifndef _SWORD_TIME_HOLIDAYREPOSITORY_
00020 #define _SWORD_TIME_HOLIDAYREPOSITORY_
00021 
00022 #include "sword/base.SmartPtr.h"
00023 #include "sword/time.Time.h"
00024 #include "sword/time.HolidayRule.h"
00025 #include <vector>
00026 
00027 namespace sword {
00028 
00029         class SWORDDECL HolidayRepository {
00030         public:
00031                 HolidayRepository(const std::string &name, bool haveWeekEnds, word cacheYearFrom, word cacheYearTo);
00032 
00033                 void addRule(const HolidayRule &rule);
00034     void addToCache(const sword::Time& time);
00035     void addToCache(int integer1900);
00036 
00037                 const std::string &name() const;
00038                 bool isHoliday(const Time &time) const;
00039                 bool isHoliday(const Date &date) const;
00040 
00041                 typedef std::vector<HolidayRule> Rules;
00042                 const Rules &rules() const;
00043 
00044         private:
00045                 std::string name_;
00046                 Rules       rules_;
00047                 int         cacheFrom_;     // nb of days
00048                 int         cacheTo_;       // nb of days
00049                 word        cacheYearFrom_; // year
00050                 word        cacheYearTo_;   // year
00051                 word8      *cache_;
00052         };
00053         typedef SmartPtr<HolidayRepository> PHolidayRepository;
00054 
00055 } // namespace sword
00056 
00057 #include "sword.private/time.HolidayRepository.inl"
00058 
00059 #endif // _SWORD_TIME_HOLIDAYREPOSITORY_

Generated on Tue Dec 23 20:08:56 2003 for SWORD by doxygen1.3-rc2