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

Constructor & Destructor Documentation

◆ ProfilingGuid() [1/2]

ProfilingGuid ( )
inline

Definition at line 255 of file Types.hpp.

255 : m_Guid(0) {}

◆ ProfilingGuid() [2/2]

ProfilingGuid ( uint64_t  guid)
inline

Definition at line 257 of file Types.hpp.

257 : m_Guid(guid) {}

Member Function Documentation

◆ operator uint64_t()

operator uint64_t ( ) const
inline

Definition at line 259 of file Types.hpp.

259 { return m_Guid; }

◆ operator!=()

bool operator!= ( const ProfilingGuid other) const
inline

Definition at line 266 of file Types.hpp.

References ProfilingGuid::m_Guid.

267  {
268  return m_Guid != other.m_Guid;
269  }

◆ operator<()

bool operator< ( const ProfilingGuid other) const
inline

Definition at line 271 of file Types.hpp.

References ProfilingGuid::m_Guid.

272  {
273  return m_Guid < other.m_Guid;
274  }

◆ operator<=()

bool operator<= ( const ProfilingGuid other) const
inline

Definition at line 276 of file Types.hpp.

References ProfilingGuid::m_Guid.

277  {
278  return m_Guid <= other.m_Guid;
279  }

◆ operator==()

bool operator== ( const ProfilingGuid other) const
inline

Definition at line 261 of file Types.hpp.

References ProfilingGuid::m_Guid.

262  {
263  return m_Guid == other.m_Guid;
264  }

◆ operator>()

bool operator> ( const ProfilingGuid other) const
inline

Definition at line 281 of file Types.hpp.

References ProfilingGuid::m_Guid.

282  {
283  return m_Guid > other.m_Guid;
284  }

◆ operator>=()

bool operator>= ( const ProfilingGuid other) const
inline

Definition at line 286 of file Types.hpp.

References ProfilingGuid::m_Guid.

287  {
288  return m_Guid >= other.m_Guid;
289  }

Member Data Documentation

◆ m_Guid


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