mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
svg_loader XmlParser: just renamed file name to simplify.
XmlParser without "Simple" is enough to address itself.
This commit is contained in:
parent
1e030004ed
commit
389b028be4
4 changed files with 5 additions and 5 deletions
|
@ -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(
|
||||||
|
|
|
@ -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"
|
||||||
|
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue