-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenEdCourse.h
More file actions
38 lines (28 loc) · 856 Bytes
/
GenEdCourse.h
File metadata and controls
38 lines (28 loc) · 856 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
// Name: Parthkumar Patel Date:August 2nd/2016
#ifndef SICT_GENEDCOURSE_H_
#define SICT_GENEDCOURSE_H_
#include <iostream>
#include <cstring>
#include <iomanip>
#include "Course.h"
#include "Streamable.h"
using namespace std;
namespace sict{
class GenEdCourse : public Course
{
int langLevel_;
public:
int getLangLevel() const;
void setLangLevel(int value);
GenEdCourse();
GenEdCourse(const char* courseC, const char* courseT, int cred, int studyL , int lang);
ostream& display(std::ostream& ge) const;
friend class GenEdCourseTester;
fstream& store(fstream& fileStream, bool addNewLine = true) const;
fstream& load(std::fstream& fileStream) ;
istream& read(istream& is) ;
};
std::ostream& operator<<(std::ostream& py, const GenEdCourse& A);
};
#endif
#pragma once