diff options
-rw-r--r-- | project2/common/optionsSource.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/project2/common/optionsSource.h b/project2/common/optionsSource.h index 4e0792b..7f1deee 100644 --- a/project2/common/optionsSource.h +++ b/project2/common/optionsSource.h @@ -20,6 +20,8 @@ typedef boost::shared_ptr<OptionsSource> OptionsSourcePtr; /// Base class of things that load options class OptionsSource { public: + virtual ~OptionsSource() = default; + virtual void loadInto(const ConfigConsumer &, const Options::CurrentPlatform & platform) const = 0; virtual boost::posix_time::ptime modifiedTime() const = 0; |