30 lines
779 B
C
30 lines
779 B
C
// Filename: vrmlLexerDefs.h
|
|
// Created by: drose (30Sep04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef VRMLLEXERDEFS_H
|
|
#define VRMLLEXERDEFS_H
|
|
|
|
#include "pandatoolbase.h"
|
|
|
|
void vrml_init_lexer(istream &in, const string &filename);
|
|
int vrml_error_count();
|
|
int vrml_warning_count();
|
|
|
|
void vrmlyyerror(const string &msg);
|
|
void vrmlyywarning(const string &msg);
|
|
|
|
int vrmlyylex();
|
|
|
|
#endif
|