| 201 | class MyObject6 { |
| 202 | public: |
| 203 | static const_only_shared_ptr<MyObject6> createObject(std::string value) { |
| 204 | return const_only_shared_ptr<MyObject6>(new MyObject6(std::move(value))); |
| 205 | } |
| 206 | |
| 207 | const std::string &value() const { return value_; } |
| 208 |