tesseract v5.3.3.20231005
cpp.ast.Using Class Reference
Inheritance diagram for cpp.ast.Using:
cpp.ast.Node

Public Member Functions

def __init__ (self, start, end, names)
 
def __str__ (self)
 
- Public Member Functions inherited from cpp.ast.Node
def __init__ (self, start, end)
 
def IsDeclaration (self)
 
def IsDefinition (self)
 
def IsExportable (self)
 
def Requires (self, node)
 
def XXX__str__ (self)
 
def __repr__ (self)
 

Public Attributes

 names
 
- Public Attributes inherited from cpp.ast.Node
 start
 
 end
 

Detailed Description

Definition at line 202 of file ast.py.

Constructor & Destructor Documentation

◆ __init__()

def cpp.ast.Using.__init__ (   self,
  start,
  end,
  names 
)

Reimplemented from cpp.ast.Node.

Definition at line 203 of file ast.py.

203 def __init__(self, start, end, names):
204 Node.__init__(self, start, end)
205 self.names = names
206

Member Function Documentation

◆ __str__()

def cpp.ast.Using.__str__ (   self)

Definition at line 207 of file ast.py.

207 def __str__(self):
208 return self._StringHelper(self.__class__.__name__, str(self.names))
209
210

Member Data Documentation

◆ names

cpp.ast.Using.names

Definition at line 205 of file ast.py.


The documentation for this class was generated from the following file: