#include <fs/ut/fsXmlDoc.h>
#include <fs/ut/fsStrUt.h>
#include <fs/sys/fsAssert.h>
#include <string>
#include <memory>
#include <tinyxml/tinyxml.h>
Include dependency graph for fsXmlDoc.cpp:
Go to the source code of this file.
Defines | |
#define | FS_VERIFY_RETURN(exp) if(!(exp)) { FS_ASSERT_MSG(0, #exp "<return>"); return; } |
#define | FS_VERIFY_RETURN_VAL(exp, ret) if(!(exp)) { FS_ASSERT_MSG(0, #exp "<returns:>" #ret); return (ret); } |
Typedefs | |
typedef std::auto_ptr< TiXmlDocument > | DocPtr_t |
Variables | |
DocPtr_t | m_ptrDoc |
#define FS_VERIFY_RETURN | ( | exp | ) | if(!(exp)) { FS_ASSERT_MSG(0, #exp "<return>"); return; } |
Definition at line 41 of file fsXmlDoc.cpp.
#define FS_VERIFY_RETURN_VAL | ( | exp, | |||
ret | ) | if(!(exp)) { FS_ASSERT_MSG(0, #exp "<returns:>" #ret); return (ret); } |
Definition at line 45 of file fsXmlDoc.cpp.
typedef std::auto_ptr<TiXmlDocument> DocPtr_t |
Definition at line 93 of file fsXmlDoc.cpp.
Definition at line 94 of file fsXmlDoc.cpp.