Kaydet (Commit) 00856ee8 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update list

üst 905b8455
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef ADC_X_PARSE_HXX
#define ADC_X_PARSE_HXX
// BASE CLASSES
#include <autodoc/x_parsing.hxx>
class X_Parser : public autodoc::X_Parser_Ifc
{
public:
// LIFECYCLE
X_Parser(
E_Event i_eEvent,
const char * i_sObject,
const String & i_sCausingFile_FullPath,
uintt i_nCausingLineNr );
~X_Parser();
// INQUIRY
virtual E_Event GetEvent() const;
virtual void GetInfo(
std::ostream & o_rOutputMedium ) const;
private:
E_Event eEvent;
String sObject;
String sCausingFile_FullPath;
uintt nCausingLineNr;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -27,68 +27,7 @@ ...@@ -27,68 +27,7 @@
************************************************************************/ ************************************************************************/
#include <precomp.h> #include <precomp.h>
#include <x_parse.hxx> #include <autodoc/x_parsing.hxx>
// NOT FULLY DECLARED SERVICES
X_Parser::X_Parser( E_Event i_eEvent,
const char * i_sObject,
const String & i_sCausingFile_FullPath,
uintt i_nCausingLineNr )
: eEvent(i_eEvent),
sObject(i_sObject),
sCausingFile_FullPath(i_sCausingFile_FullPath),
nCausingLineNr(i_nCausingLineNr)
{
}
X_Parser::~X_Parser()
{
}
X_Parser::E_Event
X_Parser::GetEvent() const
{
return eEvent;
}
void
X_Parser::GetInfo( std::ostream & o_rOutputMedium ) const
{
o_rOutputMedium << "Error in file "
<< sCausingFile_FullPath
<< " in line "
<< nCausingLineNr
<< ": ";
switch (eEvent)
{
case x_InvalidChar:
o_rOutputMedium << "Unknown character '"
<< sObject
<< "'";
break;
case x_UnexpectedToken:
o_rOutputMedium << "Unexpected token \""
<< sObject
<< "\"";
break;
case x_UnexpectedEOF:
o_rOutputMedium << "Unexpected end of file.";
break;
case x_UnspecifiedSyntaxError:
o_rOutputMedium << "Unspecified syntax problem in file.";
break;
case x_Any:
default:
o_rOutputMedium << "Unspecified parsing exception.";
} // end switch
o_rOutputMedium << Endl();
}
std::ostream & std::ostream &
operator<<( std::ostream & o_rOut, operator<<( std::ostream & o_rOut,
......
...@@ -891,8 +891,11 @@ basegfx::maximum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&) ...@@ -891,8 +891,11 @@ basegfx::maximum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
basegfx::maximum(basegfx::B2ITuple const&, basegfx::B2ITuple const&) basegfx::maximum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::minimum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&) basegfx::minimum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
basegfx::minimum(basegfx::B2ITuple const&, basegfx::B2ITuple const&) basegfx::minimum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::tools::addPointsAtCuts(basegfx::B2DPolygon const&)
basegfx::tools::addPointsAtCutsAndTouches(basegfx::B2DPolyPolygon const&, basegfx::B2DPolygon const&)
basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double) basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double)
basegfx::tools::ciexyz2rgb(basegfx::BColor const&) basegfx::tools::ciexyz2rgb(basegfx::BColor const&)
basegfx::tools::clipPolygonOnRange(basegfx::B3DPolygon const&, basegfx::B3DRange const&, bool, bool)
basegfx::tools::createPolygonFromRect(basegfx::B2DRange const&, double) basegfx::tools::createPolygonFromRect(basegfx::B2DRange const&, double)
basegfx::tools::createShearXB2DHomMatrix(double) basegfx::tools::createShearXB2DHomMatrix(double)
basegfx::tools::createShearYB2DHomMatrix(double) basegfx::tools::createShearYB2DHomMatrix(double)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment