Skip to content
Snippets Groups Projects
Commit 5df87992 authored by Steven Murray's avatar Steven Murray
Browse files

Made the destructors of ArchiveJob and RetrieveJob pure virtual

parent 6cd0a349
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ public:
/**
* Destructor.
*/
~ArchiveJob() throw();
virtual ~ArchiveJob() throw() = 0;
/**
* Returns the name of the destination tape pool.
......
......@@ -76,7 +76,7 @@ public:
/**
* Destructor.
*/
~RetrieveJob() throw();
virtual ~RetrieveJob() throw() = 0;
/**
* Indicates that the job was successful
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment