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