summaryrefslogtreecommitdiffstats
path: root/xmloff/inc
diff options
context:
space:
mode:
authorMarco Cecchetti <mrcekets@gmail.com>2011-07-20 22:27:51 +0200
committerThorsten Behrens <tbehrens@novell.com>2011-08-26 18:25:19 +0200
commitedb6e65cc9d1d8612da4f22b2cd4dbbe007c1918 (patch)
tree76fbe6639f416f0bfbbff133a470d3a27f8bd336 /xmloff/inc
parentbool cleanup. (diff)
downloadcore-edb6e65cc9d1d8612da4f22b2cd4dbbe007c1918.tar.gz
core-edb6e65cc9d1d8612da4f22b2cd4dbbe007c1918.zip
Moved unointerfacetouniqueidentifiermapper.hxx under xmloff/inc/xmloff. The Package_inc.mk file has been modified in order to export the header under solver/*/*/inc/xmloff and the UnoInterfaceToUniqueIdentifierMapper class has been made visible from the outside by the XMLOFF_DLLPUBLIC macro.
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/xmloff/unointerfacetouniqueidentifiermapper.hxx (renamed from xmloff/inc/unointerfacetouniqueidentifiermapper.hxx)8
1 files changed, 6 insertions, 2 deletions
diff --git a/xmloff/inc/unointerfacetouniqueidentifiermapper.hxx b/xmloff/inc/xmloff/unointerfacetouniqueidentifiermapper.hxx
index 0baf405c6b2e..8b3dff73666e 100644
--- a/xmloff/inc/unointerfacetouniqueidentifiermapper.hxx
+++ b/xmloff/inc/xmloff/unointerfacetouniqueidentifiermapper.hxx
@@ -2,6 +2,10 @@
#ifndef __COMPHELPER_UNOINTERFACETOUNIQUEIDENTIFIERMAPPER__
#define __COMPHELPER_UNOINTERFACETOUNIQUEIDENTIFIERMAPPER__
+#include "sal/config.h"
+#include "xmloff/dllapi.h"
+#include "sal/types.h"
+
#include <map>
#include <rtl/ustring.hxx>
#include <com/sun/star/uno/XInterface.hpp>
@@ -11,7 +15,7 @@ namespace comphelper
typedef ::std::map< rtl::OUString, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > > IdMap_t;
-class UnoInterfaceToUniqueIdentifierMapper
+class XMLOFF_DLLPUBLIC UnoInterfaceToUniqueIdentifierMapper
{
public:
UnoInterfaceToUniqueIdentifierMapper();
@@ -44,7 +48,7 @@ private:
bool findReference( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& rInterface, IdMap_t::const_iterator& rIter ) const;
bool findIdentifier( const rtl::OUString& rIdentifier, IdMap_t::const_iterator& rIter ) const;
- IdMap_t maEntries;
+ IdMap_t maEntries;
sal_Int32 mnNextId;
};