poco/CppParser/src/TypeDef.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

60 lines
988 B
C++

//
// TypeDef.cpp
//
// $Id: //poco/1.4/CppParser/src/TypeDef.cpp#1 $
//
// Library: CppParser
// Package: SymbolTable
// Module: TypeDef
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/CppParser/TypeDef.h"
#include "Poco/String.h"
#include <cctype>
namespace Poco {
namespace CppParser {
TypeDef::TypeDef(const std::string& decl, NameSpace* pNameSpace):
Decl(decl, pNameSpace)
{
}
TypeDef::~TypeDef()
{
}
Symbol::Kind TypeDef::kind() const
{
return Symbol::SYM_TYPEDEF;
}
std::string TypeDef::baseType() const
{
std::string decl = declaration();
if (decl.compare(0, 7, "typedef") == 0)
{
decl.erase(0, 7);
std::string::size_type pos = decl.size() - 1;
while (pos > 0 && std::isspace(decl[pos])) pos--;
while (pos > 0 && !std::isspace(decl[pos])) pos--;
decl.resize(pos + 1);
Poco::trimInPlace(decl);
}
return decl;
}
} } // namespace Poco::CppParser