AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
SymbolPair Struct Reference

#include "WheatyExceptionReport.h"

Public Member Functions

 SymbolPair (DWORD type, DWORD_PTR offset)
 
bool operator< (SymbolPair const &other) const
 

Public Attributes

DWORD _type
 
DWORD_PTR _offset
 

Detailed Description

Constructor & Destructor Documentation

◆ SymbolPair()

SymbolPair::SymbolPair ( DWORD  type,
DWORD_PTR  offset 
)
inline
98 {
99 _type = type;
100 _offset = offset;
101 }
DWORD _type
Definition: WheatyExceptionReport.h:109
DWORD_PTR _offset
Definition: WheatyExceptionReport.h:110

References _offset, and _type.

Member Function Documentation

◆ operator<()

bool SymbolPair::operator< ( SymbolPair const &  other) const
inline
104 {
105 return _offset < other._offset ||
106 (_offset == other._offset && _type < other._type);
107 }

References _offset, and _type.

Member Data Documentation

◆ _offset

DWORD_PTR SymbolPair::_offset

Referenced by operator<(), and SymbolPair().

◆ _type

DWORD SymbolPair::_type

Referenced by operator<(), and SymbolPair().