ArmNN
 20.02
ProfilingGuid Class Reference

#include <Types.hpp>

Inheritance diagram for ProfilingGuid:
ProfilingDynamicGuid ProfilingStaticGuid

Public Member Functions

 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 252 of file Types.hpp.

Constructor & Destructor Documentation

◆ ProfilingGuid()

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 255 of file Types.hpp.

255 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 257 of file Types.hpp.

257 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 264 of file Types.hpp.

References ProfilingGuid::m_Guid.

265  {
266  return m_Guid != other.m_Guid;
267  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 269 of file Types.hpp.

References ProfilingGuid::m_Guid.

270  {
271  return m_Guid < other.m_Guid;
272  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 274 of file Types.hpp.

References ProfilingGuid::m_Guid.

275  {
276  return m_Guid <= other.m_Guid;
277  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 259 of file Types.hpp.

References ProfilingGuid::m_Guid.

260  {
261  return m_Guid == other.m_Guid;
262  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 279 of file Types.hpp.

References ProfilingGuid::m_Guid.

280  {
281  return m_Guid > other.m_Guid;
282  }

◆ 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  }

Member Data Documentation

◆ m_Guid


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