ArmNN
 20.08
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 275 of file Types.hpp.

Constructor & Destructor Documentation

◆ ProfilingGuid() [1/2]

ProfilingGuid ( )
inline

Definition at line 278 of file Types.hpp.

278 : m_Guid(0) {}

◆ ProfilingGuid() [2/2]

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 280 of file Types.hpp.

280 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 282 of file Types.hpp.

282 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 289 of file Types.hpp.

References ProfilingGuid::m_Guid.

290  {
291  return m_Guid != other.m_Guid;
292  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 294 of file Types.hpp.

References ProfilingGuid::m_Guid.

295  {
296  return m_Guid < other.m_Guid;
297  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 299 of file Types.hpp.

References ProfilingGuid::m_Guid.

300  {
301  return m_Guid <= other.m_Guid;
302  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 284 of file Types.hpp.

References ProfilingGuid::m_Guid.

285  {
286  return m_Guid == other.m_Guid;
287  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 304 of file Types.hpp.

References ProfilingGuid::m_Guid.

305  {
306  return m_Guid > other.m_Guid;
307  }

◆ operator>=()

bool operator>= ( const ProfilingGuid other) const
inline

Definition at line 309 of file Types.hpp.

References ProfilingGuid::m_Guid.

310  {
311  return m_Guid >= other.m_Guid;
312  }

Member Data Documentation

◆ m_Guid


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