blob: d62b283948d444177aebb98a5f47e07960b83d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
namespace Comedy {
/**
* Interface for a funnyperson.
*/
class Comedian {
public:
/**
* Do the thing people want to happen.
*/
virtual void tell_joke() = 0;
virtual ~Comedian(){};
};
}
|