Click here to Skip to main content
Licence CPOL
First Posted 6 Feb 2007
Views 31,871
Bookmarked 16 times

Use of PIMPL Design Pattern

By | 6 Feb 2007 | Article
Explain why and how to use PIMPL

Introduction

PIMPL (Private Implementation) is a simple way to hide a part of a class implementation to other classes of the same project.

It makes it possible to avoid other classes to know internal data structures and other information of the class. It also simplifies some #include preprocessor instructions.

Example WITHOUT PIMPL

We have a CFoo class which is defined in two files foo.h and foo.cpp:

Our main instantiates this class to run one of its functions.

File foo.h

class CFoo
{
public:
    CFoo();
    ~CFoo();
    bool ProcessFile(const CString & csFile);
private:
    CFooInternalData    m_data;
    CHeader             m_header;
} 

File foo.cpp

#include "FooInternalData.h"
#include "Header.h"
#include "foo.h"
CFoo::CFoo()
{
}

CFoo::~CFoo()
{
}

bool CFoo::ProcessFile(const CString & csFile)
{
    //do something
    return true;
}

Main File

#include "FooInternalData.h"
#include "Header.h"
#include "foo.h"

int main()
{
    CFoo foo;
    foo.ProcessFile("c:\\data.bin");
    return 0;
} 

The problem with this simple way of coding is that in your main file, you must include the foo.h to use it, but at the same time you must also include all needed files to allow the compiler to work correctly. In fact, the main does not need to include FooInternalData.h and Header.h (which are CFoo internal structures) except for compilation.... So with very big classes, you might do some huge includes and in this case, you can have some compiler or linker errors because files are already included elsewhere.

The Same Example with PIMPL

File foo.h

//here just declare the class PIMPL to compile. 
//As I use this class with a pointer, I can use this declaration 
class CFoo_pimpl; 

class CFoo
{
public:
    CFoo();
    ~CFoo();
    bool ProcessFile(const CString & csFile);
private:
    std::auto_ptr<CFoo_pimpl>    m_pImpl;
}  

File foo.cpp

#include "FooInternalData.h"
#include "Header.h"
#include "foo.h"

//here defines PIMPl class, because it is use only in this file
class CFoo_pimpl()
{
public:
    CFoo_pimpl()
    {
    }

    ~CFoo_pimpl()
    {
    }  
    bool ProcessFile(const CString & csFile)
    {
        //do something
        return true;
    }
};

CFoo::CFoo()
:m_pImpl(new CFoo_pimpl())
{
}

CFoo::~CFoo()
{
    //do not have to delete, std::auto_ptr is very nice 
}

bool CFoo::ProcessFile(const CString & csFile)
{
    //just call your PIMPL function ;-)
    return m_pImpl->ProcessFile(csFile);
}

Main File

#include "foo.h"
int main() 
{
    CFoo foo;
    foo.ProcessFile("c:\\data.bin");
    return 0; 
} 

The result is obvious: simplicity of use!! The main does not need more includes for internal structures of CFoo class.

Thus it is an excellent optimization to minimize linker and compiler errors.

Conclusion

It is a very simple and nice way for good coding!!! If you want to use classes in other projects, it does not introduce including difficulties.

Unfortunately, you must add some more code to type.

History

  • 6th February, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Le Sourcier

Software Developer
ECT Industries
France France

Member

I am software engineer and I work for the aviation.
 
I'm currently working on many different project and in many different languages
- Visual C++ 6
- C#
- ASP.NET
- C and assembly
 
Have lot of fun

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 3 PinmemberS p k 52118:59 2 Aug '11  
GeneralMy vote of 1 Pinmemberchief editor11:26 22 Mar '11  
QuestionWhat happened Pinmembergaryco21:11 3 May '10  
AnswerRe: What happened PinmemberLe Sourcier21:45 3 May '10  
QuestionWrapper Class? PinmemberMr.Prakash11:55 16 Jul '09  
GeneralMy vote of 1 PinmemberBen_Desjardins7:17 29 Jan '09  
GeneralRe: My vote of 1 PinmemberxComaWhitex15:56 29 Nov '09  
Generalan other solution ... Pinmembera.buisson20:18 12 Feb '07  
Generalperformance implications Pinmemberemilio_grv1:47 8 Feb '07  
GeneralRe: performance implications PinmemberRené Greiner6:07 12 Feb '07  
GeneralYou forgot ... PinmemberSceptic Mole7:51 6 Feb '07  
GeneralRe: You forgot ... PinmemberLe Sourcier20:48 6 Feb '07  
GeneralRe: You forgot ... Pinmemberpsyclonist1:01 7 Feb '07  
GeneralRe: You forgot ... PinmemberthomasCAE22:00 19 Feb '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 6 Feb 2007
Article Copyright 2007 by Le Sourcier
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid