mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
17 lines
493 B
C++
17 lines
493 B
C++
|
// ------------------------------------------------------------------------------------------------
|
||
|
#include "Handle/Document.hpp"
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
namespace SqMod {
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
void DocumentRef::Validate() const
|
||
|
{
|
||
|
if (!m_Ptr)
|
||
|
{
|
||
|
STHROWF("Invalid XML document reference");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // Namespace:: SqMod
|