-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOR.h
More file actions
35 lines (30 loc) · 788 Bytes
/
TOR.h
File metadata and controls
35 lines (30 loc) · 788 Bytes
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
#ifndef TOR_H
#define TOR_H
/************************************************************************************************
* File: TOR.h
* Author: Abbey DuBois
* Date: 3/14/2024
* Description: This file contains the TOR class which is used to store information about a TOR
* in the system.
*************************************************************************************************/
#include <iostream>
#include "Task.h"
class TOR {
private:
Task m_T1;
Task m_T2;
int m_lowerEnd;
int m_higherEnd;
public:
TOR();
TOR(Task T1, Task T2, int lowerEnd, int higherEnd);
Task getT1();
Task getT2();
int getLowerEnd();
int getHigherEnd();
void setT1(Task T1);
void setT2(Task T2);
void setLowerEnd(int lowerEnd);
void setHigherEnd(int higherEnd);
};
#endif