1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-02-08 07:17:14 +01:00

Update the XML module to work with the modified API.

Separate the XML handles into their own source files.
This commit is contained in:
Sandu Liviu Catalin
2016-06-03 21:31:34 +03:00
parent 4d77386b21
commit a792ae525e
17 changed files with 539 additions and 785 deletions

View File

@@ -0,0 +1,16 @@
// ------------------------------------------------------------------------------------------------
#include "Handle/Document.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
void DocumentRef::Validate() const
{
if (!m_Ptr)
{
STHROWF("Invalid XML document reference");
}
}
} // Namespace:: SqMod