parser/xml/src/nsSAXLocator.cpp

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 #include "nsSAXLocator.h"
michael@0 7
michael@0 8 NS_IMPL_ISUPPORTS(nsSAXLocator, nsISAXLocator)
michael@0 9
michael@0 10 nsSAXLocator::nsSAXLocator(nsString& aPublicId,
michael@0 11 nsString& aSystemId,
michael@0 12 int32_t aLineNumber,
michael@0 13 int32_t aColumnNumber) :
michael@0 14 mPublicId(aPublicId),
michael@0 15 mSystemId(aSystemId),
michael@0 16 mLineNumber(aLineNumber),
michael@0 17 mColumnNumber(aColumnNumber)
michael@0 18 {
michael@0 19 }
michael@0 20
michael@0 21 NS_IMETHODIMP
michael@0 22 nsSAXLocator::GetColumnNumber(int32_t *aColumnNumber)
michael@0 23 {
michael@0 24 *aColumnNumber = mColumnNumber;
michael@0 25 return NS_OK;
michael@0 26 }
michael@0 27
michael@0 28 NS_IMETHODIMP
michael@0 29 nsSAXLocator::GetLineNumber(int32_t *aLineNumber)
michael@0 30 {
michael@0 31 *aLineNumber = mLineNumber;
michael@0 32 return NS_OK;
michael@0 33 }
michael@0 34
michael@0 35 NS_IMETHODIMP
michael@0 36 nsSAXLocator::GetPublicId(nsAString &aPublicId)
michael@0 37 {
michael@0 38 aPublicId = mPublicId;
michael@0 39 return NS_OK;
michael@0 40 }
michael@0 41
michael@0 42 NS_IMETHODIMP
michael@0 43 nsSAXLocator::GetSystemId(nsAString &aSystemId)
michael@0 44 {
michael@0 45 aSystemId = mSystemId;
michael@0 46 return NS_OK;
michael@0 47 }

mercurial