53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
|
/**
|
||
|
* 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."
|
||
|
*
|
||
|
* @file cppToken.h
|
||
|
* @author drose
|
||
|
* @date 1999-10-22
|
||
|
*/
|
||
|
|
||
|
#ifndef CPPTOKEN_H
|
||
|
#define CPPTOKEN_H
|
||
|
|
||
|
#include "dtoolbase.h"
|
||
|
|
||
|
#include "cppBisonDefs.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
class CPPToken {
|
||
|
public:
|
||
|
CPPToken(int token, int line_number = 0, int col_number = 0,
|
||
|
const CPPFile &file = CPPFile(""),
|
||
|
const std::string &str = std::string(),
|
||
|
const YYSTYPE &lval = YYSTYPE());
|
||
|
CPPToken(int token, const YYLTYPE &loc,
|
||
|
const std::string &str = std::string(),
|
||
|
const YYSTYPE &lval = YYSTYPE());
|
||
|
CPPToken(const CPPToken ©);
|
||
|
void operator = (const CPPToken ©);
|
||
|
|
||
|
static CPPToken eof();
|
||
|
bool is_eof() const;
|
||
|
|
||
|
void output(std::ostream &out) const;
|
||
|
|
||
|
int _token;
|
||
|
YYSTYPE _lval;
|
||
|
YYLTYPE _lloc;
|
||
|
};
|
||
|
|
||
|
inline std::ostream &operator << (std::ostream &out, const CPPToken &token) {
|
||
|
token.output(out);
|
||
|
return out;
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|