mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-22 07:01:45 -04:00
104 lines
3.5 KiB
C++
104 lines
3.5 KiB
C++
// Filename: cppIdentifier.h
|
|
// Created by: drose (26Oct99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CPPIDENTIFIER_H
|
|
#define CPPIDENTIFIER_H
|
|
|
|
#include "dtoolbase.h"
|
|
|
|
#include "cppDeclaration.h"
|
|
#include "cppNameComponent.h"
|
|
#include "cppFile.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CPPScope;
|
|
class CPPType;
|
|
class CPPPreprocessor;
|
|
class CPPTemplateParameterList;
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
// Class : CPPIdentifier
|
|
// Description :
|
|
////////////////////////////////////////////////////////////////////
|
|
class CPPIdentifier {
|
|
public:
|
|
CPPIdentifier(const string &name, const CPPFile &file = CPPFile());
|
|
CPPIdentifier(const CPPNameComponent &name);
|
|
void add_name(const string &name);
|
|
void add_name(const CPPNameComponent &name);
|
|
|
|
bool operator == (const CPPIdentifier &other) const;
|
|
bool operator != (const CPPIdentifier &other) const;
|
|
bool operator < (const CPPIdentifier &other) const;
|
|
|
|
bool is_scoped() const;
|
|
|
|
string get_simple_name() const;
|
|
string get_local_name(CPPScope *scope = NULL) const;
|
|
string get_fully_scoped_name() const;
|
|
|
|
bool is_fully_specified() const;
|
|
bool is_tbd() const;
|
|
|
|
|
|
CPPScope *get_scope(CPPScope *current_scope, CPPScope *global_scope,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
CPPScope *get_scope(CPPScope *current_scope, CPPScope *global_scope,
|
|
CPPDeclaration::SubstDecl &subst,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
|
|
CPPType *find_type(CPPScope *current_scope, CPPScope *global_scope,
|
|
bool force_instantiate = false,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
CPPType *find_type(CPPScope *current_scope, CPPScope *global_scope,
|
|
CPPDeclaration::SubstDecl &subst,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
CPPDeclaration *find_symbol(CPPScope *current_scope,
|
|
CPPScope *global_scope,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
CPPDeclaration *find_template(CPPScope *current_scope,
|
|
CPPScope *global_scope,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
CPPScope *find_scope(CPPScope *current_scope,
|
|
CPPScope *global_scope,
|
|
CPPPreprocessor *error_sink = NULL) const;
|
|
|
|
CPPIdentifier *substitute_decl(CPPDeclaration::SubstDecl &subst,
|
|
CPPScope *current_scope,
|
|
CPPScope *global_scope);
|
|
|
|
void output(ostream &out, CPPScope *scope) const;
|
|
void output_local_name(ostream &out, CPPScope *scope) const;
|
|
void output_fully_scoped_name(ostream &out) const;
|
|
|
|
typedef vector<CPPNameComponent> Names;
|
|
Names _names;
|
|
CPPScope *_native_scope;
|
|
CPPFile _file;
|
|
};
|
|
|
|
inline ostream &operator << (ostream &out, const CPPIdentifier &identifier) {
|
|
identifier.output(out, (CPPScope *)NULL);
|
|
return out;
|
|
}
|
|
|
|
|
|
#endif
|