Files
Christian Poveda 1213b3dfb1 split the repo into a workspace
remove `clap` dependency 🎉

update the book installation instructions
2022-10-04 20:47:17 -05:00

25 lines
472 B
C++

class PureVirtualIFace {
public:
virtual void Foo() = 0;
virtual void Bar(unsigned int) = 0;
};
class AnotherInterface {
public:
virtual void Baz() = 0;
};
class Implementation : public PureVirtualIFace {
public:
void Foo() override {}
void Bar(unsigned int) override {}
};
class DoubleImpl : public PureVirtualIFace, public AnotherInterface {
public:
void Foo() override {}
void Bar(unsigned int) override {}
void Baz() override {}
};