Added virtual destructor to reader and writer classes in order to avoid compiler warnings.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@84 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Mike Kremer
2009-03-12 07:38:04 +00:00
parent 3996aade01
commit b6632e0754
9 changed files with 27 additions and 1 deletions

View File

@@ -74,9 +74,12 @@ class _OMWriter_ : public BaseWriter
{
public:
// constructor
/// Constructor
_OMWriter_();
/// Destructor
virtual ~_OMWriter_() {};
std::string get_description() const
{ return "OpenMesh Format"; }