Library: CppParser
Package: SymbolTable
Header: Poco/CppParser/Decl.h
This class represents a simple declaration in a C++ source file. It is a base class for Function, TypeDef or Variable.
Direct Base Classes: Symbol
All Base Classes: Symbol
Known Derived Classes: Function, Parameter, Variable, TypeDef
Member Functions: declaration, toString
Inherited Functions: addDocumentation, attrs, extractName, fullName, getAccess, getAttributes, getDocumentation, getFile, getLibrary, getLineNumber, getPackage, hasAttr, id, isIdent, isPrivate, isProtected, isPublic, kind, name, nameSpace, setAccess, setAttributes, setDocumentation, setFile, setLibrary, setLineNumber, setPackage, toString
Decl(
const std::string & decl,
NameSpace * pNameSpace
);
Creates the Decl.
~Decl();
Destroys the Decl.
const std::string & declaration() const;
Returns the declaration.
std::string toString() const;
See also: Poco::CppParser::Symbol::toString()
std::string _decl;