ArmNN
 21.05
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 327 of file Types.hpp.

Constructor & Destructor Documentation

◆ ProfilingGuid() [1/2]

ProfilingGuid ( )
inline

Definition at line 330 of file Types.hpp.

330 : m_Guid(0) {}

◆ ProfilingGuid() [2/2]

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 332 of file Types.hpp.

332 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 334 of file Types.hpp.

334 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 341 of file Types.hpp.

References ProfilingGuid::m_Guid.

342  {
343  return m_Guid != other.m_Guid;
344  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 346 of file Types.hpp.

References ProfilingGuid::m_Guid.

347  {
348  return m_Guid < other.m_Guid;
349  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 351 of file Types.hpp.

References ProfilingGuid::m_Guid.

352  {
353  return m_Guid <= other.m_Guid;
354  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 336 of file Types.hpp.

References ProfilingGuid::m_Guid.

337  {
338  return m_Guid == other.m_Guid;
339  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 356 of file Types.hpp.

References ProfilingGuid::m_Guid.

357  {
358  return m_Guid > other.m_Guid;
359  }

◆ operator>=()

bool operator>= ( const ProfilingGuid other) const
inline

Definition at line 361 of file Types.hpp.

References ProfilingGuid::m_Guid.

362  {
363  return m_Guid >= other.m_Guid;
364  }

Member Data Documentation

◆ m_Guid


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