MCPcopy Create free account
hub / github.com/OAID/Tengine / B

Class B

internal/tests/core/test/test_obj_attr.cpp:72–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70};
71
72class B
73{
74public:
75 B() {}
76
77 B(const std::string& d)
78 {
79 str_ = d;
80 };
81
82 B& operator=(const std::string& s)
83 {
84 str_ = s;
85 return *this;
86 };
87
88 ~B()
89 {
90 std::cout << "B destructed: " << str_ << std::endl;
91 };
92
93private:
94 std::string str_;
95 char n[256];
96};
97
98class T_TEST
99{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected