ArmNN
 21.02
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 291 of file Types.hpp.

Constructor & Destructor Documentation

◆ ProfilingGuid() [1/2]

ProfilingGuid ( )
inline

Definition at line 294 of file Types.hpp.

294 : m_Guid(0) {}

◆ ProfilingGuid() [2/2]

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 296 of file Types.hpp.

296 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 298 of file Types.hpp.

298 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 305 of file Types.hpp.

References ProfilingGuid::m_Guid.

306  {
307  return m_Guid != other.m_Guid;
308  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 310 of file Types.hpp.

References ProfilingGuid::m_Guid.

311  {
312  return m_Guid < other.m_Guid;
313  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 315 of file Types.hpp.

References ProfilingGuid::m_Guid.

316  {
317  return m_Guid <= other.m_Guid;
318  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 300 of file Types.hpp.

References ProfilingGuid::m_Guid.

301  {
302  return m_Guid == other.m_Guid;
303  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 320 of file Types.hpp.

References ProfilingGuid::m_Guid.

321  {
322  return m_Guid > other.m_Guid;
323  }

◆ operator>=()

bool operator>= ( const ProfilingGuid other) const
inline

Definition at line 325 of file Types.hpp.

References ProfilingGuid::m_Guid.

326  {
327  return m_Guid >= other.m_Guid;
328  }

Member Data Documentation

◆ m_Guid


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