MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / Base

Method Base

base_code/struct_function.cpp:18–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16 printf("%s\n","Base hello world");
17 };
18 Base() {
19 cout<<"Base construct"<<endl;
20 };
21 virtual ~Base() {
22 cout<<"Base deconstruct"<<endl;
23 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected