generated from COP3530/P2-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.h
More file actions
39 lines (35 loc) · 1018 Bytes
/
programs.h
File metadata and controls
39 lines (35 loc) · 1018 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
36
37
38
39
using namespace std;
#ifndef FINALPROJECTDSA_PROGRAMS_H
#define FINALPROJECTDSA_PROGRAMS_H
// this class allows us to store all the information needed for each study abroad program
class studyAbroadProgram{
public:
string name;
string city;
string country;
string region;
string term;
string gpa;
string advisor;
string college;
string credits;
string cost;
string sapa;
string about;
// constructor
studyAbroadProgram(string name, string city, string country, string region, string term, string gpa, string advisor, string college, string credits, string cost, string sapa, string about){
this->name = name;
this->city = city;
this->country = country;
this->region = region;
this->term = term;
this->gpa = gpa;
this->advisor = advisor;
this->college = college;
this->credits = credits;
this->cost = cost;
this->sapa = sapa;
this->about = about;
}
};
#endif