Files
libreoffice/sw/source/ui/vba/vbapalette.hxx

16 lines
437 B
C++
Raw Normal View History

2009-09-18 15:35:47 +00:00
#ifndef VBAPALETTE_HXX
#define VBAPALETTE_HXX
#include <vbahelper/vbahelper.hxx>
class VbaPalette
{
css::uno::Reference< css::container::XIndexAccess > mxPalette;
public:
VbaPalette();
// if no palette available e.g. because the document doesn't have a
// palette defined then a default palette will be returned.
css::uno::Reference< css::container::XIndexAccess > getPalette() const;
};
#endif