-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneralObjects.hpp
86 lines (56 loc) · 1.43 KB
/
GeneralObjects.hpp
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
// GenObs.cpp
// Algorithms
//
// Created by Harshavardhan K K on 21/07/16.
// Copyright © 2016 Harshavardhan K. All rights reserved.
//
#include <stdio.h>
#include <string.h>
#include <iostream>
// Create general objects that the above data structures can store.
class Performance {
private:
std::string performance;
public:
void setPerformance(std::string performance) {
this->performance = performance;
}
std::string getPerformance() {
return performance;
}
friend std::ostream& operator <<(std::ostream& a, Performance& b);
};
class Student {
private:
std::string name;
int rollNo;
double percentage;
Performance performance;
public:
Student(std::string name, int rollNo, double percentage) {
this->name = name;
this->rollNo = rollNo;
this->percentage = percentage;
}
void setPerformance(std::string performance) {
this->performance.setPerformance(performance);
}
Student() {};
std::string getName() {
return name;
}
double getPercentage() {
return percentage;
}
int getRollNo() {
return rollNo;
}
Performance getPerformance() {
return performance;
}
};
std::ostream& operator <<(std::ostream& a, Performance& b) {
a << b.getPerformance();
return a;
}