diff --git a/bazaar/DXF/Block.h b/bazaar/DXF/Block.h index 6e44b0ee2..80803f27f 100644 --- a/bazaar/DXF/Block.h +++ b/bazaar/DXF/Block.h @@ -90,6 +90,9 @@ class DXFBlock : public Pte // gets the transformation matrix TransMatrix const &GetTransformationMatrix(void) const { return transMatrix; } + + // virtual destructor for polymorphic correctness + virtual ~DXFBlock() {}; }; #endif