MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / B

Class B

tests/UsingDeclTest.cpp:4–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <iostream>
3
4struct B {
5 virtual void f(int) { std::cout << "B::f\n"; }
6 void g(char) { std::cout << "B::g\n"; }
7 void h(int) { std::cout << "B::h\n"; }
8
9 protected:
10 int m; // B::m is protected
11 typedef int value_type;
12};
13
14template<typename T>
15struct D : B {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected