1234bd5c5SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3234bd5c5SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4234bd5c5SAndrew Rist * or more contributor license agreements. See the NOTICE file 5234bd5c5SAndrew Rist * distributed with this work for additional information 6234bd5c5SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7234bd5c5SAndrew Rist * to you under the Apache License, Version 2.0 (the 8234bd5c5SAndrew Rist * "License"); you may not use this file except in compliance 9234bd5c5SAndrew Rist * with the License. You may obtain a copy of the License at 10234bd5c5SAndrew Rist * 11234bd5c5SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12234bd5c5SAndrew Rist * 13234bd5c5SAndrew Rist * Unless required by applicable law or agreed to in writing, 14234bd5c5SAndrew Rist * software distributed under the License is distributed on an 15234bd5c5SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16234bd5c5SAndrew Rist * KIND, either express or implied. See the License for the 17234bd5c5SAndrew Rist * specific language governing permissions and limitations 18234bd5c5SAndrew Rist * under the License. 19234bd5c5SAndrew Rist * 20234bd5c5SAndrew Rist *************************************************************/ 21234bd5c5SAndrew Rist 22234bd5c5SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _SB_SBUNO_HXX 25cdf0e10cSrcweir #define _SB_SBUNO_HXX 26cdf0e10cSrcweir 27*7fef15a0SDamjan Jovanovic #include "basic/basicdllapi.h" 28cdf0e10cSrcweir #include <basic/sbxobj.hxx> 29cdf0e10cSrcweir 30cdf0e10cSrcweir namespace com { namespace sun { namespace star { namespace uno { class Any; }}}} 31cdf0e10cSrcweir 32cdf0e10cSrcweir // Returns a SbxObject that wrapps an Uno Interface 33cdf0e10cSrcweir // Implementation in basic/source/classes/sbunoobj.cxx 34*7fef15a0SDamjan Jovanovic BASIC_DLLPUBLIC SbxObjectRef GetSbUnoObject( const String& aName, const com::sun::star::uno::Any& aUnoObj_ ); 35cdf0e10cSrcweir 36cdf0e10cSrcweir // Force creation of all properties for debugging 37*7fef15a0SDamjan Jovanovic BASIC_DLLPUBLIC void createAllObjectProperties( SbxObject* pObj ); 38cdf0e10cSrcweir 39*7fef15a0SDamjan Jovanovic BASIC_DLLPUBLIC ::com::sun::star::uno::Any sbxToUnoValue( SbxVariable* pVar ); 40cdf0e10cSrcweir 41*7fef15a0SDamjan Jovanovic BASIC_DLLPUBLIC void unoToSbxValue( SbxVariable* pVar, const ::com::sun::star::uno::Any& aValue ); 42cdf0e10cSrcweir 43cdf0e10cSrcweir #endif 44cdf0e10cSrcweir 45