LibreOffice Module oox (master) 1
|
#include <map>
#include <string_view>
#include <vector>
#include <com/sun/star/uno/Reference.hxx>
#include <oox/dllapi.h>
#include <oox/token/tokens.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
Go to the source code of this file.
Classes | |
class | oox::formulaimport::XmlStream |
Class for storing a stream of xml tokens. More... | |
struct | oox::formulaimport::XmlStream::AttributeList |
Structure representing a list of attributes. More... | |
struct | oox::formulaimport::XmlStream::Tag |
Structure representing a tag, including its attributes and content text immediately following it. More... | |
class | oox::formulaimport::XmlStreamBuilder |
This class is used for creating XmlStream. More... | |
Namespaces | |
namespace | com |
namespace | com::sun |
namespace | com::sun::star |
namespace | com::sun::star::xml |
namespace | com::sun::star::xml::sax |
namespace | oox |
namespace | oox::formulaimport |
Macros | |
#define | XML_STREAM_OPENING(token) (TAG_OPENING | token) |
#define | XML_STREAM_CLOSING(token) (TAG_CLOSING | token) |
Variables | |
const int | oox::formulaimport::TAG_OPENING = 1 << 29 |
const int | oox::formulaimport::TAG_CLOSING = 1 << 30 |
#define XML_STREAM_CLOSING | ( | token | ) | (TAG_CLOSING | token) |
Definition at line 40 of file importutils.hxx.
#define XML_STREAM_OPENING | ( | token | ) | (TAG_OPENING | token) |
Definition at line 39 of file importutils.hxx.