출처- http://www.codeproject.com/Articles/17536/Use-of-PIMPL-Design-Pattern IntroductionPIMPL (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..