-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.cpp
More file actions
81 lines (71 loc) · 1.31 KB
/
data.cpp
File metadata and controls
81 lines (71 loc) · 1.31 KB
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
#define _CRT_SECURE_NO_DEPRECATE // stop deprecation warnings, needs to be on first line
#include "data.h"
#include <iostream>
#include <iomanip>
#include <string.h>
using namespace std;
data::data(char const * const name) :
name(NULL)
{
this->setName(name);
}
// destructor
data::~data()
{
if (name)
{
delete [] name;
}
}
// assignment operator overload
data& data::operator=(const data& data2)
{
if (this == &data2)
{
return *this;
}
else
{
this->setName(data2.getName());
return *this;
}
}
char const * const data::getName() const
{
return (this->name);
}
void data::setName (char const * const name)
{
this->name = new char[strlen(name)+1];
strcpy(this->name, name);
}
// return true if d1 is "less than" d2, false otherwise
bool operator< (const data& d1, const data& d2)
{
if (strcmp(d1.getName(),d2.getName()) < 0)
{
return true;
}
else
{
return false;
}
}
// return true if d1 is "equal to" d2, false otherwise
bool operator== (const data& d1, const data& d2)
{
if (strcmp(d1.getName(),d2.getName()) == 0)
{
return true;
}
else
{
return false;
}
}
// print the data instance referred to by outData
ostream& operator<< (ostream& out, const data& outData)
{
out << outData.name << endl;
return out;
}