Files
poco/CppParser/src/BuiltIn.cpp
Roger Meier b0581433a7 LICENSE: add info about SPDX-License-Identifier usage and use it
fix: remove executable flag and change back to 100644 (was 100755)

Signed-off-by: Roger Meier <r.meier@siemens.com>
2014-05-14 08:38:09 +02:00

50 lines
690 B
C++

//
// BuiltIn.cpp
//
// $Id: //poco/1.4/CppParser/src/BuiltIn.cpp#1 $
//
// Library: CppParser
// Package: SymbolTable
// Module: BuiltIn
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/CppParser/BuiltIn.h"
#include "Poco/String.h"
#include <cctype>
namespace Poco {
namespace CppParser {
BuiltIn::BuiltIn(const std::string& name, NameSpace* pNameSpace):
Symbol(name, pNameSpace)
{
}
BuiltIn::~BuiltIn()
{
}
Symbol::Kind BuiltIn::kind() const
{
return Symbol::SYM_BUILTIN;
}
std::string BuiltIn::toString() const
{
return fullName();
}
} } // namespace Poco::CppParser