TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
Loading...
Searching...
No Matches
EasterYearMonthDay Class Reference

for assert More...

Public Member Functions

 EasterYearMonthDay (uint64_t newYear, uint64_t newMonth, uint64_t newDay)
 

Public Attributes

uint64_t year
 year Easter is on
 
uint64_t month
 month Easter is on
 
uint64_t day
 day Easter is on
 

Detailed Description

for assert

for IO operations

Definition at line 27 of file easter.cpp.

Constructor & Destructor Documentation

◆ EasterYearMonthDay()

EasterYearMonthDay::EasterYearMonthDay ( uint64_t newYear,
uint64_t newMonth,
uint64_t newDay )
inline

Definition at line 33 of file easter.cpp.

33 {
34 year = newYear; // Assigns year to class
35 month = newMonth;
36 day = newDay;
37 }
uint64_t month
month Easter is on
Definition easter.cpp:30
uint64_t year
year Easter is on
Definition easter.cpp:29
uint64_t day
day Easter is on
Definition easter.cpp:31

Member Data Documentation

◆ day

uint64_t EasterYearMonthDay::day

day Easter is on

Definition at line 31 of file easter.cpp.

◆ month

uint64_t EasterYearMonthDay::month

month Easter is on

Definition at line 30 of file easter.cpp.

◆ year

uint64_t EasterYearMonthDay::year

year Easter is on

Definition at line 29 of file easter.cpp.


The documentation for this class was generated from the following file: