-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lib.h
31 lines (27 loc) · 1.03 KB
/
Lib.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
29
30
31
/*
*****************************************************************************
Project - Milestone 5
Full Name : Mayank Kumar
Student ID#: 145998217
Email : [email protected]
Date : 07 August 2022
Authenticity Declaration:
I have done all the coding by myself and only copied the code that
my professor provided to complete my project.
*****************************************************************************
*/
#ifndef LIB_H
#define LIB_H
namespace sdds {
const int SDDS_MAX_LOAN_DAYS = 15;
// maximum number of day a publication can be borrowed with no penalty
const int SDDS_TITLE_WIDTH = 30;
// The width in which the title of a publication should be printed on the console
const int SDDS_AUTHOR_WIDTH = 15;
// The width in which the author name of a book should be printed on the console
const int SDDS_SHELF_ID_LEN = 4;
// The width in which the shelf id of a publication should be printed on the console
const int SDDS_LIBRARY_CAPACITY = 5000;
// Maximum number of publications the library can hold.
}
#endif