Feature #510
Use pimpl idiom where applicable
Status: | New | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | design | |||
Target version: | 1.0 |
Description
Increases stability of the interface
From Sutter, C++ Coding Standards:
class Map {
// ...
private:
struct Impl;
shared_ptr<Impl> pimpl_;
};
Related issues
History
#1 Updated by Andreas Huggel over 9 years ago
- Target version set to 1.0