use insert function instead of for loop
[LibreOffice.git] / xmlsecurity / source / framework / elementmark.hxx
blob94ca71fdfb107e822b068079e144b53e41d2f369
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <com/sun/star/xml/crypto/sax/ElementMarkType.hpp>
24 class BufferNode;
26 class ElementMark
27 /****** elementmark.hxx/CLASS ElementMark *************************************
29 * NAME
30 * ElementMark -- Class to manipulate an element mark
32 * FUNCTION
33 * This class maintains the security id, buffer id and its type for a
34 * buffer node.
35 ******************************************************************************/
37 protected:
38 /* the BufferNode maintained by this object */
39 BufferNode* m_pBufferNode;
41 /* the security Id */
42 sal_Int32 m_nSecurityId;
44 /* the buffer Id */
45 sal_Int32 const m_nBufferId;
48 * the type value, is one of following values:
49 * TYPEOFELEMENTMARK - the default value, represents a blocker if
50 * not changed
51 * TYPEOFELEMENTCOLLECTOR - represents an ElementCollector
53 css::xml::crypto::sax::ElementMarkType m_type;
55 public:
56 ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId);
57 virtual ~ElementMark(){};
59 BufferNode* getBufferNode() const { return m_pBufferNode; }
60 void setBufferNode(const BufferNode* pBufferNode);
61 sal_Int32 getSecurityId() const { return m_nSecurityId; }
62 void setSecurityId(sal_Int32 nSecurityId);
63 css::xml::crypto::sax::ElementMarkType getType() const { return m_type; }
64 sal_Int32 getBufferId() const { return m_nBufferId; }
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */