-
Notifications
You must be signed in to change notification settings - Fork 0
/
Section.cpp
35 lines (28 loc) · 948 Bytes
/
Section.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//* Author: Dhiraj Amarnani, Hassan Naveed, Andre Koppert
//* Date: December 18 2017
#include "Section.h"
#include <iostream>
using namespace std;
//*******************************************************************
//* Section()
//*
//* The constructor of our section class. Creates a new empty
//* section instance of our section class. It does not take any
//* parameters and does not return anything.
//*
//*******************************************************************
Section::Section(){
//set occupied to false by default
occupied = false;
//if not occupied, set to '.' character for printing to standard output
occupiedBy = '.';
}
//*******************************************************************
//* ~Section()
//*
//* The destructor of our Section class. It does not take any
//* parameters or return anything.
//*
//*******************************************************************
Section::~Section(){
}