korganizer
parsha.h
00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Jonathan Singer * 00003 * jsinger@leeta.net * 00004 * Calendar routines from Hebrew Calendar by Frank Yellin * 00005 * * 00006 * This program is free software; you can redistribute it and/or modify * 00007 * it under the terms of the GNU General Public License as published by * 00008 * the Free Software Foundation; either version 2 of the License, or * 00009 * (at your option) any later version. * 00010 ***************************************************************************/ 00011 #ifndef PARSHA_H 00012 #define PARSHA_H 00013 00014 #include <qstring.h> 00015 #include <qstringlist.h> 00016 00020 class Parsha 00021 { 00022 public: 00023 00024 Parsha(); 00025 ~Parsha(); 00026 static QString FindParshaName(int daynumber, int kvia, bool leap_p, 00027 bool israel_p); 00028 00029 private: 00030 static QStringList parshiot_names; 00031 }; 00032 00033 #endif