Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#include "mammal.h"
2
3
void
4
mammal::setHairColor(std::string &color) {
5
hairColor = color;
6
}
7
8
std::string
9
mammal::getHairColor() {
10
return hairColor;
11
}
12
13
void
14
mammal::setHairLength(double length) {
15
hairLength = length;
16
}
17
18
double
19
mammal::getHairLength() {
20
return hairLength;
21
}
22
23