| 43 | } |
| 44 | |
| 45 | const char *NameRender::GetPrefix(char *dest, int size) { |
| 46 | snprintf(dest, size, "%s", prefix_); |
| 47 | |
| 48 | ToUpper(dest); |
| 49 | |
| 50 | return dest; |
| 51 | } |
| 52 | |
| 53 | const char *NameRender::GetMessageClassName(const char *type, char *name, int size) { |
| 54 | string tmp = type; |
nothing calls this directly
no outgoing calls
no test coverage detected