File: hdate_cpp.cpp

package info (click to toggle)
libhdate 1.6.02-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 3,912 kB
  • sloc: sh: 11,647; ansic: 5,120; pascal: 1,059; makefile: 196; sed: 16; cpp: 13; perl: 7; python: 7; php: 5; ruby: 5
file content (46 lines) | stat: -rw-r--r-- 1,237 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// hdate_cpp.cpp
// example file for libhdate.
//

//
// compile: g++ -lm -lhdate -o hdate_cpp hdate_cpp.cpp
//

//
//  Copyright (C) 2008  Yaacov Zamir <kzamir@walla.co.il>
//  
//  This program is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//
//  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
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
//

#include <iostream>
#include <hdatepp.h>

using namespace std;
using namespace hdate;

int
main (int argc, char* argv[])
{
	// create a new Hdate object
	Hdate h;

	// print gregorian date
	cout << "Today is :" << endl;
	cout << h.get_gday () << "," << h.get_gmonth () << "," << h.get_gyear () << endl;
	
	// print hebrew date: 0 - long format
	cout << h.get_format_date (0) << endl;

	return 0;
}