diff options
Diffstat (limited to 'project2/files/optionsSource.h')
-rw-r--r-- | project2/files/optionsSource.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/project2/files/optionsSource.h b/project2/files/optionsSource.h index a6d1cd1..14bab77 100644 --- a/project2/files/optionsSource.h +++ b/project2/files/optionsSource.h @@ -4,15 +4,16 @@ #include "../common/optionsSource.h" #include "../common/options.h" #include <boost/filesystem/path.hpp> +#include <visibility.h> class FileOptions; typedef boost::shared_ptr<FileOptions> FileOptionsPtr; -class FileOptions : public OptionsSource { +class DLL_PUBLIC FileOptions : public OptionsSource { public: FileOptions(const boost::filesystem::path & file); - void loadInto(const ConfigConsumer & consume, const Options::CurrentPlatform & platform) const; + void loadInto(const ConfigConsumer & consume, const Options::CurrentPlatform & platform) const override; boost::posix_time::ptime modifiedTime() const override; INITOPTIONS; |