ArmNN
 20.11
ProfilingGuid Class Reference

#include <Types.hpp>

Inheritance diagram for ProfilingGuid:
ProfilingDynamicGuid ProfilingStaticGuid

Public Member Functions

 ProfilingGuid ()
 
 ProfilingGuid (uint64_t guid)
 
 operator uint64_t () const
 
bool operator== (const ProfilingGuid &other) const
 
bool operator!= (const ProfilingGuid &other) const
 
bool operator< (const ProfilingGuid &other) const
 
bool operator<= (const ProfilingGuid &other) const
 
bool operator> (const ProfilingGuid &other) const
 
bool operator>= (const ProfilingGuid &other) const
 

Protected Attributes

uint64_t m_Guid
 

Detailed Description

Definition at line 283 of file Types.hpp.

Constructor & Destructor Documentation

◆ ProfilingGuid() [1/2]

ProfilingGuid ( )
inline

Definition at line 286 of file Types.hpp.

286 : m_Guid(0) {}

◆ ProfilingGuid() [2/2]

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 288 of file Types.hpp.

288 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 290 of file Types.hpp.

290 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 297 of file Types.hpp.

References ProfilingGuid::m_Guid.

298  {
299  return m_Guid != other.m_Guid;
300  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 302 of file Types.hpp.

References ProfilingGuid::m_Guid.

303  {
304  return m_Guid < other.m_Guid;
305  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 307 of file Types.hpp.

References ProfilingGuid::m_Guid.

308  {
309  return m_Guid <= other.m_Guid;
310  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 292 of file Types.hpp.

References ProfilingGuid::m_Guid.

293  {
294  return m_Guid == other.m_Guid;
295  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 312 of file Types.hpp.

References ProfilingGuid::m_Guid.

313  {
314  return m_Guid > other.m_Guid;
315  }

◆ operator>=()

bool operator>= ( const ProfilingGuid other) const
inline

Definition at line 317 of file Types.hpp.

References ProfilingGuid::m_Guid.

318  {
319  return m_Guid >= other.m_Guid;
320  }

Member Data Documentation

◆ m_Guid


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