| 22 | LStringArray (const char *const *pointer, const int size) : StringArray (pointer, size) {} |
| 23 | LStringArray (const char *const *pointer) : StringArray (pointer) {} |
| 24 | String get(const int index) |
| 25 | { |
| 26 | return (StringArray::strings[index]); |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | #endif |
no outgoing calls
no test coverage detected