mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
221 B
C++
15 lines
221 B
C++
|
#ifdef NALL_STRING_INTERNAL_HPP
|
||
|
|
||
|
namespace nall {
|
||
|
namespace Markup {
|
||
|
|
||
|
inline Node Document(const string &markup) {
|
||
|
if(markup.beginswith("<")) return XML::Document(markup);
|
||
|
return BML::Document(markup);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|