Is there a way to hide private data members of a C++ class away from its users, in the cpp file? I think of the private members as part of the implementation and it seems a little backwards to declare them in the header file.
|
|
The "pimpl" idiom is how this is generally handled. See |
|||
|
|
|
See Pimpl Idiom |
||
|
|
|
|
you want to use something like the PIMPL idiom |
||
|
|
|
The classic way to do this is with a proxy pointer to an internal class which implements the functionality. There's no way to do partial class definitions in C++ that I know of. |
||
|
|
