Re: C-style unit -> C++ class, implementation function / structure issue
On Jul 12, 7:15 pm, Jason Doucette <jdouce...@gmail.com> wrote:
I'm not sure I understand. How did you get by in C without
defining the struct in the header? You can wrap exactly the
same technique in a class.
(I was using a C++ compiler, so my original code wasn't technically
plain C code... I was using C++ without classes. I was using C-style
units of functions, where the implementation existed all in the .cpp
file, and the interface was visible in the .h file)
I defined the struct in the .cpp file, since only the implementation
functions in the .cpp file used it. The struct was not required for
any interface functions, so it didn't have to exist in the .h file.
In other words, the compilation firewall (pimpl) idiom. You can
do exactly the same in C++.
My issue is that I didn't want to move the struct into the .h file
when I converted this 'unit' into a C++ class. But, I now realize I
can put the struct in the .h file, under the class's private section,
and it'll be hidden from the interface. All is well.
Yes. C++ gives you the choice; C didn't.
--
James Kanze (Gabi Software) email: james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34