Re: Namespaces

From: David Harmon (source_at_netcom.com.invalid)
Date: 05/14/04


Date: Fri, 14 May 2004 14:23:17 GMT

On Fri, 14 May 2004 13:55:47 +0000 (UTC) in comp.lang.c++, "Michael"
<slick_mick_00@hotmail.com> wrote,
>Now I have forward declared Font Library, but how do i tell the compiler
>that the namespace FontLib Exists?

No only that Fontlib exists, but also that class Fontlibrary is in it or
that will be the next thing the compiler will bitch about...

namespace Fontlib
{
    class FontLibrary;
}