mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
50 lines
690 B
C++
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
|