MCPcopy Create free account
hub / github.com/RPISEC/MBE / Bar

Class Bar

src/lecture/cpp/cpp_lec01.cpp:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9};
10
11class Bar : public Foo {
12public:
13 virtual void greet() { printf("Bar says hi\n"); }
14 virtual void dismiss() { printf("Bar says bye\n"); }
15 void me() { printf("Bar is best\n"); }
16};
17
18class Baz : public Bar {
19public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected