23class CStringArray :
public ResizeableArray {
25 CStringArray(int32_t newElementSize) : ResizeableArray(newElementSize) {}
26 void sortForStrings();
27 int32_t search(
char const* searchString,
bool* foundExact =
nullptr);
30 int32_t partitionForStrings(int32_t low, int32_t high);
31 void quickSortForStrings(int32_t low, int32_t high);