MCPcopy Create free account
hub / github.com/Tencent/rapidjson / Dependent

Method Dependent

example/serialize/serialize.cpp:74–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72class Dependent : public Person {
73public:
74 Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), education_(education) {}
75 Dependent(const Dependent& rhs) : Person(rhs), education_(0) { education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_); }
76 virtual ~Dependent();
77

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected