51 lines
1.7 KiB
C++
51 lines
1.7 KiB
C++
// Filename: xFileParseData.cxx
|
|
// Created by: drose (07Oct04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "xFileParseData.h"
|
|
#include "xLexerDefs.h"
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileParseData::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
XFileParseData::
|
|
XFileParseData() :
|
|
_parse_flags(0)
|
|
{
|
|
// Save the line number, column number, and line text in case we
|
|
// detect an error later and want to report a meaningful message to
|
|
// the user.
|
|
_line_number = x_line_number;
|
|
_col_number = x_col_number;
|
|
_current_line = x_current_line;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileParseData::yyerror
|
|
// Access: Public
|
|
// Description: Reports a parsing error message to the user, showing
|
|
// the line and column from which this object was
|
|
// originally parsed.
|
|
////////////////////////////////////////////////////////////////////
|
|
void XFileParseData::
|
|
yyerror(const string &message) const {
|
|
xyyerror(message, _line_number, _col_number, _current_line);
|
|
}
|