diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-03-14 08:22:02 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-03-14 08:22:02 +0000 |
commit | 429bce2549206614f4fa8322a37ed7601292a9b2 (patch) | |
tree | 24f75edf201e800b45145a3b88ceea658ca26689 /comphelper | |
parent | 2a671668df9280fbad9fc0a167ffece4ebc86dae (diff) |
#i10000# COMPHELPER_DLLPUBLIC needed for class ScopeGuard (used by slideshow/source/engine/presentation.cxx).
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/scopeguard.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/comphelper/inc/comphelper/scopeguard.hxx b/comphelper/inc/comphelper/scopeguard.hxx index 892243dd0708..e04d75852f71 100644 --- a/comphelper/inc/comphelper/scopeguard.hxx +++ b/comphelper/inc/comphelper/scopeguard.hxx @@ -2,9 +2,9 @@ * * $RCSfile: scopeguard.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2005-03-10 13:59:33 $ + * last change: $Author: rt $ $Date: 2005-03-14 09:22:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -65,11 +65,15 @@ #include "boost/function.hpp" #include "boost/noncopyable.hpp" +#ifndef INCLUDED_COMPHELPERDLLAPI_H +#include "comphelper/comphelperdllapi.h" +#endif + namespace comphelper { /** ScopeGuard to ease writing exception-safe code. */ -class ScopeGuard : private boost::noncopyable // noncopyable until we have +class COMPHELPER_DLLPUBLIC ScopeGuard : private boost::noncopyable // noncopyable until we have // good reasons... { public: |