| 48 | } |
| 49 | |
| 50 | NamedString::NamedString(const std::string & name, AbstractStringSource * source, const GLenum type) |
| 51 | : m_name(name) |
| 52 | , m_source(source) |
| 53 | , m_type(type) |
| 54 | { |
| 55 | createNamedString(); |
| 56 | registerNamedString(); |
| 57 | |
| 58 | m_source->registerListener(this); |
| 59 | } |
| 60 | |
| 61 | NamedString::~NamedString() |
| 62 | { |
nothing calls this directly
no test coverage detected