| 238 | } |
| 239 | |
| 240 | const char* ASLocalizer::settext(const char* textIn) const |
| 241 | // Call the settext class and return the value. |
| 242 | { |
| 243 | assert(m_translation); |
| 244 | const string stringIn = textIn; |
| 245 | return m_translation->translate(stringIn).c_str(); |
| 246 | } |
| 247 | |
| 248 | void ASLocalizer::setTranslationClass() |
| 249 | // Return the required translation class. |
nothing calls this directly
no outgoing calls
no test coverage detected