-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICTCourse.h
More file actions
35 lines (28 loc) · 885 Bytes
/
ICTCourse.h
File metadata and controls
35 lines (28 loc) · 885 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
// Name: Parthkumar Patel Date:August 2nd/2016
#ifndef SICT_ICTCOURSE_H_
#define SICT_ICTCOURSE_H_
#include <iostream>
#include <cstring>
#include <iomanip>
#include "Course.h"
#include "Streamable.h"
using namespace std;
namespace sict{
class ICTCourse: public Course
{
char computerSystem__[6 + 1];
public:
ICTCourse();
ICTCourse(const char * courseC, const char * courseT, int cred, int studyL,const char * computerS);
const char* getComputerSystem() const;
void setComputerSystem(const char* compSys);
ostream& display(std::ostream& ge) const;
friend class ICTCourseTester;
fstream& store(fstream& fileStream, bool addNewLine) const ;
fstream& load(std::fstream& fileStream) ;
istream& read(istream& is) ;
};
std::ostream& operator<<(std::ostream& py, const ICTCourse& A);
};
#endif
#pragma once