2025-04-27 07:49:33 -04:00

84 lines
2.0 KiB
C++

//-----------------------------------------------------------------------------
//
// File: _report.inl
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Gets all the 'Note' severity messages from the CBufferReport.
//
//-----------------------------------------------------------------------------
inline
const MessageList &
CBufferReport::GetNotes(void)
const
{
return m_mlNotes;
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Gets all the 'Warning' severity messages from the CBufferReport.
//
//-----------------------------------------------------------------------------
inline
const MessageList &
CBufferReport::GetWarnings(void)
const
{
return m_mlWarnings;
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Gets all the 'Error' severity messages from the CBufferReport.
//
//-----------------------------------------------------------------------------
inline
const MessageList &
CBufferReport::GetErrors(void)
const
{
return m_mlErrors;
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Gets all the 'Abort' severity messages from the CBufferReport.
//
//-----------------------------------------------------------------------------
inline
const MessageList &
CBufferReport::GetAborts(void)
const
{
return m_mlAborts;
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Returns ALL the messages issued to the CBufferReport. The messages
// are stored in chronological order.
//
//-----------------------------------------------------------------------------
inline
const MessageList &
CBufferReport::GetMessages(void)
const
{
return m_mlMessages;
}