summaryrefslogtreecommitdiffstats
path: root/ucbhelper
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-16 14:44:12 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-16 14:44:12 +0000
commit0410c006979209d80a4feae7baff58e894dc6842 (patch)
tree7528fb1595cb0fd96c3b9aa7a4bc903bc9cb897f /ucbhelper
parentINTEGRATION: CWS visibility02 (1.4.130); FILE MERGED (diff)
downloadcore-0410c006979209d80a4feae7baff58e894dc6842.tar.gz
core-0410c006979209d80a4feae7baff58e894dc6842.zip
INTEGRATION: CWS visibility02 (1.5.150); FILE MERGED
2004/12/22 04:02:24 mnicel 1.5.150.1: Issue number:38608 Symbol visibility work.
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/inc/ucbhelper/contenthelper.hxx15
1 files changed, 9 insertions, 6 deletions
diff --git a/ucbhelper/inc/ucbhelper/contenthelper.hxx b/ucbhelper/inc/ucbhelper/contenthelper.hxx
index c6ece3776b04..e58c51f91768 100644
--- a/ucbhelper/inc/ucbhelper/contenthelper.hxx
+++ b/ucbhelper/inc/ucbhelper/contenthelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: contenthelper.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2001-09-27 10:51:34 $
+ * last change: $Author: vg $ $Date: 2005-02-16 15:44:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -112,6 +112,9 @@
#ifndef _UCBHELPER_MACROS_HXX
#include <ucbhelper/macros.hxx>
#endif
+#ifndef INCLUDED_UCBHELPERDLLAPI_H
+#include "ucbhelper/ucbhelperdllapi.h"
+#endif
namespace com { namespace sun { namespace star { namespace ucb {
struct CommandInfo;
@@ -154,7 +157,7 @@ class ContentProviderImplHelper;
* - complete XCommandInfo implementation
* -> protected method: getCommandInfo
*/
-class ContentImplHelper :
+class UCBHELPER_DLLPUBLIC ContentImplHelper :
public cppu::OWeakObject,
public com::sun::star::lang::XTypeProvider,
public com::sun::star::lang::XServiceInfo,
@@ -195,7 +198,7 @@ private:
* @param xEnv is an environment to use for example, for interactions.
* @return a sequence containing the property meta data.
*/
- virtual com::sun::star::uno::Sequence< com::sun::star::beans::Property >
+ UCBHELPER_DLLPRIVATE virtual com::sun::star::uno::Sequence< com::sun::star::beans::Property >
getProperties( const com::sun::star::uno::Reference<
com::sun::star::ucb::XCommandEnvironment > & xEnv ) = 0;
@@ -206,7 +209,7 @@ private:
* @param xEnv is an environment to use for example, for interactions.
* @return a sequence containing the command meta data.
*/
- virtual com::sun::star::uno::Sequence< com::sun::star::ucb::CommandInfo >
+ UCBHELPER_DLLPRIVATE virtual com::sun::star::uno::Sequence< com::sun::star::ucb::CommandInfo >
getCommands( const com::sun::star::uno::Reference<
com::sun::star::ucb::XCommandEnvironment > & xEnv ) = 0;
@@ -220,7 +223,7 @@ private:
* be returned. If your content has more than one parent you may
* return the URL of one "preferred" parent or an empty string.
*/
- virtual ::rtl::OUString getParentURL() = 0;
+ UCBHELPER_DLLPRIVATE virtual ::rtl::OUString getParentURL() = 0;
protected:
/**