What does this mean?

What does this block of code mean? And what does it do exactly?

1
2
3
4
5
  CRectangle::~CRectangle () 
  {   
     delete width;   
     delete height; 
  }
It is the destructor for a class named CRectangle.

As for what it does, that depends entirely on how width and height are defined. They are probably useless pointers and are only dynamically allocated for demonstration purposes.
Topic archived. No new replies allowed.