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

Class Foo

src/lecture/cpp/cpp_lec01.cpp:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <cstring>
4
5class Foo {
6public:
7 virtual void greet() { printf("Foo says hi\n"); }
8 void me() { printf("Foo is best\n"); }
9};
10
11class Bar : public Foo {
12public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected