vote up 6 vote down star
1

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.

flag

4 Answers

vote up 21 vote down check

The "pimpl" idiom is how this is generally handled.

See

link|flag
Thanks, it works now. Those two articles explain the idiom well. – da_code_monkey Oct 15 '08 at 20:51
vote up 4 vote down

See Pimpl Idiom

link|flag
vote up 4 vote down

you want to use something like the PIMPL idiom

http://en.wikipedia.org/wiki/Opaque_pointer

link|flag
sheesh, gotta be quick around here – Keith Nicholas Oct 15 '08 at 20:28
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.