| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /**
- * 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 cppNamespace.cxx
- * @author drose
- * @date 1999-11-16
- */
- #include "cppNamespace.h"
- #include "cppIdentifier.h"
- #include "cppScope.h"
- #include "indent.h"
- /**
- *
- */
- CPPNamespace::
- CPPNamespace(CPPIdentifier *ident, CPPScope *scope, const CPPFile &file) :
- CPPDeclaration(file),
- _ident(ident),
- _scope(scope),
- _is_inline(false)
- {
- }
- /**
- *
- */
- std::string CPPNamespace::
- get_simple_name() const {
- if (_ident == nullptr) {
- return "";
- }
- return _ident->get_simple_name();
- }
- /**
- *
- */
- std::string CPPNamespace::
- get_local_name(CPPScope *scope) const {
- if (_ident == nullptr) {
- return "";
- }
- return _ident->get_local_name(scope);
- }
- /**
- *
- */
- std::string CPPNamespace::
- get_fully_scoped_name() const {
- if (_ident == nullptr) {
- return "";
- }
- return _ident->get_fully_scoped_name();
- }
- /**
- *
- */
- CPPScope *CPPNamespace::
- get_scope() const {
- return _scope;
- }
- /**
- *
- */
- void CPPNamespace::
- output(std::ostream &out, int indent_level, CPPScope *scope, bool complete) const {
- if (_is_inline) {
- out << "inline ";
- }
- if (!complete && _ident != nullptr) {
- // If we have a name, use it.
- out << "namespace " << _ident->get_local_name(scope);
- } else {
- if (_ident != nullptr) {
- out << "namespace " << _ident->get_local_name(scope) << " {\n";
- } else {
- out << "namespace {\n";
- }
- _scope->write(out, indent_level + 2, _scope);
- indent(out, indent_level) << "}";
- }
- }
- /**
- *
- */
- CPPDeclaration::SubType CPPNamespace::
- get_subtype() const {
- return ST_namespace;
- }
- /**
- *
- */
- CPPNamespace *CPPNamespace::
- as_namespace() {
- return this;
- }
|