10 lines
127 B
C++
10 lines
127 B
C++
#pragma once
|
|
|
|
class Calendar
|
|
{
|
|
public:
|
|
Calendar();
|
|
|
|
static unsigned int GetDayOfMonth();
|
|
static unsigned int GetMonth();
|
|
}; |