0
votes
3answers
94 views
Strange “type class::method() : stuff “ syntax C++
While reading some stuff on the pImpl idiom I found something like this:
MyClass::MyClass() : pimpl_( new MyClassImp() )
First: What does it mean?
Second: What is the syntax?
S …
0
votes
3answers
102 views
PIMPL problem: How to have multiple interfaces to the impl w/o code duplication
I have this pimpl design where the implementation classes are polymorphic but the interfaces are supposed to just contain a pointer, making them polymorphic somewhat defeats the pu …
0
votes
2answers
67 views
Is it possible to wrap boost sockets with Pimpl?
Hi,
in a project we want to wrap the Boost Asio socket in a way, that the using class or the wrapping .h does not have to include the boost headers.
We usually use pointers and f …
6
votes
3answers
160 views
Automate pimpl’ing of C++ classes — is there an easy way?
Pimpl's are a source of boilerplate in a lot of C++ code. They seem like the kind of thing that a combination of macros, templates, and maybe a little external tool help could solv …
1
vote
5answers
134 views
pimpl idiom and template class friend
I'm trying to use the pimpl idiom to hide some grungy template code, but I can't give derived classes of the body class friend access to the handle class. I get an error C2248 fro …
5
votes
6answers
304 views
What patterns do you use to decouple interfaces and implementation in C++?
One problem in large C++ projects can be build times. There is some class high up in your dependency tree which you would need to work on, but usually you avoid doing so because ev …
7
votes
5answers
652 views
Pimpl idiom vs Pure virtual class interface
I was wondering what would make a programmer to choose either Pimpl idiom or pure virtual class and inheritance.
I understand that pimpl idiom comes with one explicit extra indire …
4
votes
7answers
493 views
The Pimpl Idiom in practice
There have been a few questions on SO about the pimpl idiom, but I'm more curious about how often it is leveraged in practice.
I understand there are some trade-offs between perfo …
5
votes
12answers
1k views
Why should the “PIMPL” idiom be used?
Backgrounder:
The PIMPL Idiom is a technique for implementation hiding in which a public class wraps a structure or class that cannot be seen outside the library the public class …
2
votes
5answers
446 views
Pimpl idiom with inheritance
I want to use pimpl idiom with inheritance.
Here is the base public class and its implementation class:
class A
{
public:
A(){pAImpl = new AImpl;};
void foo(){pAI …
7
votes
6answers
828 views
Could C++ have not obviated the pimpl idiom?
As I understand, the pimpl idiom is exists only because C++ forces you to place all the private class members in the header. If the header were to contain only the public interface …
2
votes
2answers
130 views
How to get debug information for an abstract(?) pimpl in C++?
I have a wrapper class that delegates its work to a pimpl, and the pimpl is a pointer to a baseclass/interface with no data that is specialized in several different ways.
Like thi …
1
vote
2answers
184 views
MSVC++ Linker warning when using PIMPL idiom in C++/CLI
I am writing a .NET assembly using C++/CLI (version 9.0), and I would like to use the PIMPL idiom to avoid putting unnecessary stuff in my public header. Unfortunately, when I try …
