-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBorrow.h
28 lines (26 loc) · 1.34 KB
/
Borrow.h
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
// ------------------------------------------------ Borrow.h -------------------------------------------------------
// Jasdeep Brar, Cameron Ufland CSS343 C
// Creation Date: March 1, 2020
// Date of Last Modification: March 14, 2020
// --------------------------------------------------------------------------------------------------------------------
// This is the header file for the borrow class. This is a subclass of transaction
// --------------------------------------------------------------------------------------------------------------------
//The requirements for this assignment were specified by Wooyoung Kim via class
// and canvas.
// --------------------------------------------------------------------------------------------------------------------
#ifndef Borrow_h
#define Borrow_h
#include "Transaction.h"
class Borrow : public Transaction
{
public:
//constructors,
Borrow();
Borrow(const int customerID, char Type, const string title, const int releaseMonth, const int releaseYear, const string majorActorFirstName, const string majorActorLastName);//classic movie
Borrow(const int customerID, char type, const string title, int releaseYear);//funny movie
Borrow(const int customerID, char type, const string director, string title);//Drama movie
virtual void display();
private:
string transactionType = "Borrow";
};
#endif // !Borrow_h