--- parser3/src/include/pa_array.h 2001/04/02 09:29:17 1.33 +++ parser3/src/include/pa_array.h 2001/04/03 05:23:40 1.34 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_array.h,v 1.33 2001/04/02 09:29:17 paf Exp $ + $Id: pa_array.h,v 1.34 2001/04/03 05:23:40 paf Exp $ */ #ifndef PA_ARRAY_H @@ -109,6 +109,9 @@ public: const String *get_string(int index) const { return const_cast(static_cast(get(index))); } + const String *quick_get_string(int index) const { + return const_cast(static_cast(quick_get(index))); + } /// iterate over all elements void for_each(For_each_func func, void *info=0) const;