Skip to main content

CPP

Content filed under CPP.

  • C++ PIMPL Pattern

    PIMPL means pointer to implementation, or private implementation. It shows up a lot in C++ projects and libraries. The basic idea is simple: keep private data and methods out of the public interface. Put the class …