Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Differences between these two PIMPL approaches

So when trying to get in touch with the PIMPL idiom one finds two common ways of doing it:

  1. Using forward declaration outside a class:

    class PimplClass;
    class VisibleClass
    {
    private:
        PimplClass* d_ptr;
    };
    
  2. Using forward declaration inside a class:

    // *.hpp
    class VisibleClass
    {
    private:
       struct PimplClass;
       PimplClass* d_ptr;       
    };
    // *.cpp file:
    struct VisibleClass::PimplClass
    {
      int x;
    };
    

Two questions here:

  • To be honest I have no idea why the second one works. I mean the expression struct PimplClass I only do know from forward declaration but not within a class. Can someone please explain this to me?
  • Which solution to use? Where are the advantages or is it jsut a matter of taste?
like image 886
binaryguy Avatar asked Feb 09 '26 19:02

binaryguy


2 Answers

  • It's a forward-declaration too, but PimplClass is scoped inside VisibleClass.

  • That second solution has the advantage of not dumping an internal type into the global namespace. Keeping PimplClass scoped inside VisibleClass makes complete sense.

In both cases, the Pimpl idiom should generally use a std::unique_ptr to tie the lifetimes of the interface and the Impl together, rather than a raw owning pointer.

like image 140
Quentin Avatar answered Feb 16 '26 03:02

Quentin


You may do a forward declaration within class scope. So the second example is absolutely correct.

The main plus of second example is that your PimplClass can't be accessed from anywhere but from VisibleClass because it is declared (forward-declared) inside it's private section.

like image 29
Victor Polevoy Avatar answered Feb 16 '26 01:02

Victor Polevoy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!