Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
langcpp
class Handle {
  class Body *Impl;  // Declaration of a pointer to an incomplete class.
public:
  ~Handle();
  // ...
};

 
// Elsewhere.
class Body { /* ... */ };
 
Handle::~Handle() {
  delete Impl;
}

...