1//
2// BuiltIn.cpp
3//
4// Library: CppParser
5// Package: SymbolTable
6// Module: BuiltIn
7//
8// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/CppParser/BuiltIn.h"
16#include "Poco/String.h"
17#include <cctype>
18
19
20namespace Poco {
21namespace CppParser {
22
23
24BuiltIn::BuiltIn(const std::string& name, NameSpace* pNameSpace):
25 Symbol(name, pNameSpace)
26{
27}
28
29
30BuiltIn::~BuiltIn()
31{
32}
33
34
35Symbol::Kind BuiltIn::kind() const
36{
37 return Symbol::SYM_BUILTIN;
38}
39
40
41std::string BuiltIn::toString() const
42{
43 return fullName();
44}
45
46
47} } // namespace Poco::CppParser
48