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 = [
'tvgSimpleXmlParser.h',
'tvgSvgLoader.h',
'tvgSvgLoaderCommon.h',
'tvgSvgPath.h',
'tvgSvgSceneBuilder.h',
'tvgSimpleXmlParser.cpp',
'tvgXmlParser.h',
'tvgSvgLoader.cpp',
'tvgSvgPath.cpp',
'tvgSvgSceneBuilder.cpp',
'tvgXmlParser.cpp'
]
subloader_dep += [declare_dependency(

View file

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

View file

@ -24,7 +24,7 @@
#include <cstring>
#include <alloca.h>
#include "tvgSimpleXmlParser.h"
#include "tvgXmlParser.h"
static const char* _simpleXmlFindWhiteSpace(const char* itr, const char* itrEnd)
{