// from : Savitch. Absolute C++.
#pragma once
// This file uses the type DayOfYear, so it needs to include the file that contains its declaration.
#include DayOfYear.h
class Holiday
{
public:
Holiday();
Holiday(int month, int day, bool enforcement);
private:
DayOfYear doy;
bool parkingEnforcement;
};

![[SOLVED] CS // from : Savitch. Absolute C++.](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[SOLVED] Project 9-1: Monthly Payment Calculator](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.