\brief Set the name of a layer. This method copies the name string. \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. \see getName()
| 562 | //! \see getName() |
| 563 | //! |
| 564 | void setName(char const* name) noexcept |
| 565 | { |
| 566 | mLayer->setName(name); |
| 567 | } |
| 568 | |
| 569 | //! |
| 570 | //! \brief Return the name of a layer. |