On 15 Feb 1999, Lars Gullik Bjønnes wrote:
>
> I have investigated a bit on why it is so hard to compile devel lyx.
> Two reasons:
>
> 1. "class LString;" should not be used in headerfiles. Change
> it to "#include "LString.h"
We might be able use a #define LString whatever_string_actually_is<..>
within config.h provided we either get fancy and extract the
typedef whatever_string_actually_is<...> string;
from string.h or we just expect some fixed implementation (ie. expect that
all stl implementations have the same whatever_string_actually_is<...>).
That would limit the number of files that are dependent upon LString.h
Allan. (ARRae)