LibreOffice
LibreOffice 4.3 SDK C/C++ API Reference
|
#include <sal/config.h>
#include <cassert>
#include <iomanip>
#include <ostream>
#include <com/sun/star/uno/Any.h>
#include <uno/data.h>
#include <uno/sequence2.h>
#include <com/sun/star/uno/Type.hxx>
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/genfunc.hxx>
#include <cppu/unotype.hxx>
Go to the source code of this file.
Namespaces | |
com | |
com::sun | |
com::sun::star | |
com::sun::star::uno | |
Functions | |
template<class C > | |
Any | com::sun::star::uno::makeAny (const C &value) SAL_THROW(()) |
Template function to generically construct an any from a C++ value. More... | |
template<> | |
Any | com::sun::star::uno::makeAny (bool const &value) SAL_THROW(()) |
template<class C > | |
void | com::sun::star::uno::operator<<= (Any &rAny, const C &value) SAL_THROW(()) |
Template binary <<= operator to set the value of an any. More... | |
template<> | |
void | com::sun::star::uno::operator<<= (Any &rAny, bool const &value) SAL_THROW(()) |
template<class C > | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, C &value) SAL_THROW(()) |
Template binary >>= operator to assign a value from an any. More... | |
template<> | |
bool | com::sun::star::uno::operator>>= (const ::com::sun::star::uno::Any &rAny, sal_Bool &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator== (const Any &rAny, const sal_Bool &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (Any const &rAny, bool &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator== (Any const &rAny, bool const &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const ::com::sun::star::uno::Any &rAny, sal_Int8 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_Int16 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_uInt16 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_Int32 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_uInt32 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_Int64 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, sal_uInt64 &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, float &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, double &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny,::rtl::OUString &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator== (const Any &rAny, const ::rtl::OUString &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, Type &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator== (const Any &rAny, const Type &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator>>= (const Any &rAny, Any &value) SAL_THROW(()) |
template<> | |
bool | com::sun::star::uno::operator== (const Any &rAny, const BaseReference &value) SAL_THROW(()) |
template<class C > | |
bool | com::sun::star::uno::operator== (const Any &rAny, const C &value) SAL_THROW(()) |
Template equality operator: compares set value of left side any to right side value. More... | |
template<class C > | |
bool | com::sun::star::uno::operator!= (const Any &rAny, const C &value) SAL_THROW(()) |
Template unequality operator: compares set value of left side any to right side value. More... | |
rtl_uString * | com::sun::star::uno::cppu_Any_extraction_failure_msg (uno_Any const *pAny, typelib_TypeDescriptionReference *pType) SAL_THROW_EXTERN_C() |
template<typename charT , typename traits > | |
std::basic_ostream< charT, traits > & | com::sun::star::uno::operator<< (std::basic_ostream< charT, traits > &o, Any const &any) |
Support for Any in std::ostream (and thus in CPPUNIT_ASSERT or SAL_INFO macros, for example). More... | |