clang
13.0.0git
|
Defines the position of a template parameter within a template parameter list. More...
#include "clang/AST/DeclTemplate.h"
Public Member Functions | |
TemplateParmPosition ()=delete | |
unsigned | getDepth () const |
Get the nesting depth of the template parameter. More... | |
void | setDepth (unsigned D) |
unsigned | getPosition () const |
Get the position of the template parameter within its parameter list. More... | |
void | setPosition (unsigned P) |
unsigned | getIndex () const |
Get the index of the template parameter within its parameter list. More... | |
Protected Member Functions | |
TemplateParmPosition (unsigned D, unsigned P) | |
Protected Attributes | |
unsigned | Depth |
unsigned | Position |
Defines the position of a template parameter within a template parameter list.
Because template parameter can be listed sequentially for out-of-line template members, each template parameter is given a Depth - the nesting of template parameter scopes - and a Position - the occurrence within the parameter list. This class is inheritedly privately by different kinds of template parameters and is not part of the Decl hierarchy. Just a facility.
Definition at line 1143 of file DeclTemplate.h.
Definition at line 1150 of file DeclTemplate.h.
|
delete |
|
inline |
Get the nesting depth of the template parameter.
Definition at line 1156 of file DeclTemplate.h.
References Depth.
|
inline |
Get the index of the template parameter within its parameter list.
Definition at line 1164 of file DeclTemplate.h.
References Position.
|
inline |
Get the position of the template parameter within its parameter list.
Definition at line 1160 of file DeclTemplate.h.
References Position.
|
inline |
Definition at line 1157 of file DeclTemplate.h.
References Depth.
|
inline |
Definition at line 1161 of file DeclTemplate.h.
|
protected |
Definition at line 1147 of file DeclTemplate.h.
Referenced by getDepth(), and setDepth().
|
protected |
Definition at line 1148 of file DeclTemplate.h.
Referenced by getIndex(), getPosition(), and setPosition().