godot/core/io/xml_parser.cpp

/**************************************************************************/
/*  xml_parser.cpp                                                        */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "xml_parser.h"

#include "core/string/print_string.h"

//#define DEBUG_XML

static inline bool _is_white_space(char c) {}

//! sets the state that text was found. Returns true if set should be set
bool XMLParser::_set_text(const char *start, const char *end) {}

void XMLParser::_parse_closing_xml_element() {}

void XMLParser::_ignore_definition() {}

bool XMLParser::_parse_cdata() {}

void XMLParser::_parse_comment() {}

void XMLParser::_parse_opening_xml_element() {}

void XMLParser::_parse_current_node() {}

uint64_t XMLParser::get_node_offset() const {}

Error XMLParser::seek(uint64_t p_pos) {}

void XMLParser::_bind_methods() {}

Error XMLParser::read() {}

XMLParser::NodeType XMLParser::get_node_type() {}

String XMLParser::get_node_data() const {}

String XMLParser::get_node_name() const {}

int XMLParser::get_attribute_count() const {}

String XMLParser::get_attribute_name(int p_idx) const {}

String XMLParser::get_attribute_value(int p_idx) const {}

bool XMLParser::has_attribute(const String &p_name) const {}

String XMLParser::get_named_attribute_value(const String &p_name) const {}

String XMLParser::get_named_attribute_value_safe(const String &p_name) const {}

bool XMLParser::is_empty() const {}

Error XMLParser::open_buffer(const Vector<uint8_t> &p_buffer) {}

Error XMLParser::_open_buffer(const uint8_t *p_buffer, size_t p_size) {}

Error XMLParser::open(const String &p_path) {}

void XMLParser::skip_section() {}

void XMLParser::close() {}

int XMLParser::get_current_line() const {}

XMLParser::~XMLParser() {}