Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
SVF::List< Data >::ListNode Class Reference

Public Member Functions

 ListNode (const Data &d)
 
 ~ListNode ()
 

Public Attributes

Data data
 
ListNodenext
 

Detailed Description

template<class Data>
class SVF::List< Data >::ListNode

Definition at line 58 of file WorkList.h.

Constructor & Destructor Documentation

◆ ListNode()

template<class Data >
SVF::List< Data >::ListNode::ListNode ( const Data d)
inline

Definition at line 61 of file WorkList.h.

62 {
63 data = d;
64 next = nullptr;
65 }
ListNode * next
Definition WorkList.h:70
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~ListNode()

template<class Data >
SVF::List< Data >::ListNode::~ListNode ( )
inline

Definition at line 67 of file WorkList.h.

67{}

Member Data Documentation

◆ data

template<class Data >
Data SVF::List< Data >::ListNode::data

Definition at line 69 of file WorkList.h.

◆ next

template<class Data >
ListNode* SVF::List< Data >::ListNode::next

Definition at line 70 of file WorkList.h.


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