Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / xmlsecurity / source / framework / elementmark.cxx
blobc333527f42b258fe68f51105d9c1918b54023a8e
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 .
21 #include "elementmark.hxx"
23 namespace cssxc = com::sun::star::xml::crypto;
25 ElementMark::ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId)
26 :m_pBufferNode(nullptr),
27 m_nSecurityId(nSecurityId),
28 m_nBufferId(nBufferId),
29 m_type(cssxc::sax::ElementMarkType_ELEMENTMARK)
30 /****** ElementMark/ElementMark ***********************************************
32 * NAME
33 * ElementMark -- constructor method
35 * SYNOPSIS
36 * ElementMark(nSecurityId, nBufferId);
38 * FUNCTION
39 * construct an ElementMark object.
41 * INPUTS
42 * nSecurityId - represents which security entity the buffer node is
43 * related with. Either a signature or an encryption is
44 * a security entity.
45 * nBufferId - the id of the element buffered in the document
46 * wrapper component. The document wrapper component
47 * uses this id to search the particular buffered
48 * element.
49 ******************************************************************************/
54 void ElementMark::setBufferNode(const BufferNode* pBufferNode)
56 m_pBufferNode = const_cast<BufferNode*>(pBufferNode);
60 void ElementMark::setSecurityId(sal_Int32 nSecurityId)
62 m_nSecurityId = nSecurityId;
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */