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

Method Employee

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

Source from the content-addressed store, hash-verified

110class Employee : public Person {
111public:
112 Employee(const std::string& name, unsigned age, bool married) : Person(name, age), dependents_(), married_(married) {}
113 Employee(const Employee& rhs) : Person(rhs), dependents_(rhs.dependents_), married_(rhs.married_) {}
114 virtual ~Employee();
115

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected