diff options
author | Thorsten Behrens <tbehrens@novell.com> | 2010-12-03 21:12:46 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@novell.com> | 2010-12-03 21:12:46 +0100 |
commit | acb97d8396e4679c53d890813bdad4b4d0e470f5 (patch) | |
tree | 5d791ee11de895e32d30ff830237de69e533aab9 | |
parent | 8407e2c4f2b6b8e874517294caa06abcab5f0656 (diff) |
Export FileChangedChecker symbols
forgot to annotate with public dll api
-rw-r--r-- | svtools/inc/svtools/filechangedchecker.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svtools/inc/svtools/filechangedchecker.hxx b/svtools/inc/svtools/filechangedchecker.hxx index 0806b703369a..fe5fd689c27c 100644 --- a/svtools/inc/svtools/filechangedchecker.hxx +++ b/svtools/inc/svtools/filechangedchecker.hxx @@ -24,6 +24,7 @@ #ifndef SVTOOLS_INCLUDED_FILECHANGEDCHECKER_HXX #define SVTOOLS_INCLUDED_FILECHANGEDCHECKER_HXX +#include "svtools/svtdllapi.h" #include <boost/function.hpp> #include <osl/file.hxx> #include <vcl/timer.hxx> @@ -33,7 +34,7 @@ Instances of this class setup a vcl timer to occasionally wake up check whether file modification time has changed. */ -class FileChangedChecker +class SVT_DLLPUBLIC FileChangedChecker { private : Timer mTimer; @@ -41,10 +42,10 @@ private : TimeValue mLastModTime; ::boost::function0<void> mpCallback; - bool getCurrentModTime(TimeValue& o_rValue) const; + bool SVT_DLLPRIVATE getCurrentModTime(TimeValue& o_rValue) const; + DECL_LINK(TimerHandler, Timer *); public : - DECL_LINK(TimerHandler, Timer *); void resetTimer(); bool hasFileChanged(); FileChangedChecker(const rtl::OUString& rFilename, const ::boost::function0<void>& rCallback); |