parsha.h
1 /***************************************************************************
2  * Copyright (C) 2003 by Jonathan Singer *
3  * jsinger@leeta.net *
4  * Calendar routines from Hebrew Calendar by Frank Yellin *
5  * *
6  * This program is free software; you can redistribute it and/or modify *
7  * it under the terms of the GNU General Public License as published by *
8  * the Free Software Foundation; either version 2 of the License, or *
9  * (at your option) any later version. *
10  ***************************************************************************/
11 #ifndef PARSHA_H
12 #define PARSHA_H
13 
14 #include <tqstring.h>
15 #include <tqstringlist.h>
16 
20 class Parsha
21 {
22 public:
23 
24  Parsha();
25  ~Parsha();
26  static TQString FindParshaName(int daynumber, int kvia, bool leap_p,
27  bool israel_p);
28 
29 private:
30  static TQStringList parshiot_names;
31 };
32 
33 #endif
Definition: parsha.h:21