TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
SymbolPair Struct Reference

#include <WheatyExceptionReport.h>

Public Member Functions

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

Public Attributes

DWORD _type
 
DWORD_PTR _offset
 

Constructor & Destructor Documentation

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

Member Function Documentation

bool SymbolPair::operator< ( const SymbolPair other) const
inline
103  {
104  return _offset < other._offset ||
105  (_offset == other._offset && _type < other._type);
106  }
DWORD_PTR _offset
Definition: WheatyExceptionReport.h:109
DWORD _type
Definition: WheatyExceptionReport.h:108

Member Data Documentation

DWORD_PTR SymbolPair::_offset
DWORD SymbolPair::_type

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