Panda3D
Loading...
Searching...
No Matches
dcLexerDefs.h
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file dcLexerDefs.h
10 * @author drose
11 * @date 2000-10-05
12 */
13
14#ifndef DCLEXERDEFS_H
15#define DCLEXERDEFS_H
16
17#include "dcbase.h"
18
19void dc_init_lexer(std::istream &in, const std::string &filename);
20void dc_start_parameter_value();
21void dc_start_parameter_description();
22int dc_error_count();
23int dc_warning_count();
24
25void dcyyerror(const std::string &msg);
26void dcyywarning(const std::string &msg);
27
28int dcyylex();
29
30// we always read files
31#define YY_NEVER_INTERACTIVE 1
32#endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.