-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path06-pixel2.cpp
40 lines (33 loc) · 854 Bytes
/
06-pixel2.cpp
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
// 06-pixel2.cpp : Color and position Pixel type through inheritance
#include <iostream>
#include <string_view>
using namespace std;
struct Point {
int x{}, y{};
};
enum class Color { red, green, blue };
struct Pixel : Point {
Color col{};
};
string_view get_color(Color c) {
switch (c) {
case Color::red:
return "red";
case Color::green:
return "green";
case Color::blue:
return "blue";
default:
return "<no color>";
}
}
int main() {
Pixel p1;
cout << "Pixel p1 has color " << get_color(p1.col);
cout << " and co-ordinates " << p1.x;
cout << ',' << p1.y << '\n';
Pixel p2{ { -1, 2}, Color::blue};
cout << "Pixel p2 has color " << get_color(p2.col);
cout << " and co-ordinates " << p2.x;
cout << ',' << p2.y << '\n';
}