\brief Set the name of the conditional. The name is used in error diagnostics. 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()
| 5475 | //! \see getName() |
| 5476 | //! |
| 5477 | void setName(char const* name) noexcept |
| 5478 | { |
| 5479 | mImpl->setName(name); |
| 5480 | } |
| 5481 | |
| 5482 | //! |
| 5483 | //! \brief Return the name of the conditional. |