Gregorian& operator= (Jd const& jd) {
			from_jd(jd.jd());
			return *this;
		}
Beispiel #2
0
	Islamic & Islamic::operator=(Calendar const & rhs) {
		from_jd(rhs.to_jd());
		return *this;
	}
		Gregorian(Jd const& jd) { from_jd(jd.jd()); }
Beispiel #4
0
	Julian & Julian::operator=(Calendar const & rhs) {
		from_jd(rhs.to_jd());
		return *this;
	}