$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: gruenedd_at_[hidden]
Date: 2005-05-18 14:59:24
> private:
> struct Private;
> boost::scoped_ptr<Private> d;
> };
When working with Qt, i suggest to write the Pimpl idiom like this,
since the generated code from moc needs access to your FooPrivate,
in cases.
struct FooPrivate;
class Foo
{
private:
FooPrivate* pimpl_;
};
--David