Skip to content
Snippets Groups Projects
Commit c2d1de7b authored by mdjurfeldt's avatar mdjurfeldt
Browse files

Merge pull request #7 from hernando/master

Missing virtual destructors.
parents f4fd9e65 e916584e
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,8 @@ Makefile.in
config.guess
config.h.in
config.h
config.log
config.status
config.sub
Makefile
......
......@@ -32,6 +32,7 @@ namespace MUSIC {
class EventHandlerGlobalIndex {
public:
virtual ~EventHandlerGlobalIndex() { }
virtual void operator () (double t, GlobalIndex id) = 0;
};
......@@ -55,6 +56,7 @@ namespace MUSIC {
class EventHandlerLocalIndex {
public:
virtual ~EventHandlerLocalIndex() { }
virtual void operator () (double t, LocalIndex id) = 0;
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment