* \brief make an empty box * * \return std::shared_ptr */
| 80 | * \return std::shared_ptr<Box> |
| 81 | */ |
| 82 | static std::shared_ptr<Box> make() { return std::make_shared<Box>(); } |
| 83 | }; |
| 84 | |
| 85 | } // namespace mgb::imperative |
no outgoing calls
no test coverage detected