summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@novell.com>2010-12-03 21:12:46 +0100
committerThorsten Behrens <tbehrens@novell.com>2010-12-03 21:12:46 +0100
commitacb97d8396e4679c53d890813bdad4b4d0e470f5 (patch)
tree5d791ee11de895e32d30ff830237de69e533aab9 /svtools
parent8407e2c4f2b6b8e874517294caa06abcab5f0656 (diff)
Export FileChangedChecker symbols
forgot to annotate with public dll api
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/filechangedchecker.hxx7
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);