| 180 | { |
| 181 | public: |
| 182 | RefCountClass(std::shared_ptr<int> value) : sptr_(std::move(value)) |
| 183 | { |
| 184 | std::cout << "Constructor: ref_count " << sptr_.use_count() << std::endl; |
| 185 | } |
| 186 | |
| 187 | RefCountClass(const RefCountClass& from) : sptr_(from.sptr_) |
| 188 | { |