svg_loader XmlParser: just renamed file name to simplify.

XmlParser without "Simple" is enough to address itself.
This commit is contained in:
Hermet Park 2020-10-15 20:37:53 +09:00
parent 1e030004ed
commit 389b028be4
4 changed files with 5 additions and 5 deletions

View file

@ -1,13 +1,13 @@
source_file = [ source_file = [
'tvgSimpleXmlParser.h',
'tvgSvgLoader.h', 'tvgSvgLoader.h',
'tvgSvgLoaderCommon.h', 'tvgSvgLoaderCommon.h',
'tvgSvgPath.h', 'tvgSvgPath.h',
'tvgSvgSceneBuilder.h', 'tvgSvgSceneBuilder.h',
'tvgSimpleXmlParser.cpp', 'tvgXmlParser.h',
'tvgSvgLoader.cpp', 'tvgSvgLoader.cpp',
'tvgSvgPath.cpp', 'tvgSvgPath.cpp',
'tvgSvgSceneBuilder.cpp', 'tvgSvgSceneBuilder.cpp',
'tvgXmlParser.cpp'
] ]
subloader_dep += [declare_dependency( subloader_dep += [declare_dependency(

View file

@ -25,7 +25,7 @@
#include <float.h> #include <float.h>
#include <math.h> #include <math.h>
#include "tvgLoaderMgr.h" #include "tvgLoaderMgr.h"
#include "tvgSimpleXmlParser.h" #include "tvgXmlParser.h"
#include "tvgSvgLoader.h" #include "tvgSvgLoader.h"
/************************************************************************/ /************************************************************************/

View file

@ -24,7 +24,7 @@
#include <cstring> #include <cstring>
#include <alloca.h> #include <alloca.h>
#include "tvgSimpleXmlParser.h" #include "tvgXmlParser.h"
static const char* _simpleXmlFindWhiteSpace(const char* itr, const char* itrEnd) static const char* _simpleXmlFindWhiteSpace(const char* itr, const char* itrEnd)
{ {
@ -362,4 +362,4 @@ const char* simpleXmlFindAttributesTag(const char* buf, unsigned bufLength)
} }
return nullptr; return nullptr;
} }