599033b7b0
It is lot easier to work with automatic formatters if we have external files in different folder. For some tools we can example just exclude external all together. Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
/*****************************************************************************
|
|
*
|
|
* Atmel Corporation
|
|
*
|
|
* File : XMLParser.hpp
|
|
* Compiler : Dev-C++ 4.9.8.0 - http://bloodshed.net/dev/
|
|
* Revision : $Revision: 3419 $
|
|
* Date : $Date: 2008-02-22 09:56:34 +0100 (fr, 22 feb 2008) $
|
|
* Updated by : $Author: khole $
|
|
*
|
|
* Support mail : avr@atmel.com
|
|
*
|
|
* Target platform : Win32
|
|
*
|
|
* AppNote : AVR911 - AVR Open-source Programmer
|
|
*
|
|
* Description : A simple XML DOM-like parser. It builds a complete tree from
|
|
* the XML file. IT supports <section/> tags, but not tag attributes.
|
|
*
|
|
*
|
|
****************************************************************************/
|
|
#ifndef XMLPARSER_HPP
|
|
#define XMLPARSER_HPP
|
|
|
|
using namespace std;
|
|
|
|
#include "ErrorMsg.hpp"
|
|
#include "Utility.hpp"
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <list>
|
|
|
|
class XMLAbstractNode; // Preliminary definitions.
|
|
class XMLTree;
|
|
class XMLNode;
|
|
|
|
|
|
/* Main XML file class. Contains search methods and entire XML tree */
|
|
class XMLFile
|
|
{
|
|
protected:
|
|
XMLTree * root; // The root node, either a subtree or an ordinary node.
|
|
|
|
void XMLFile::removeStartXML( string & txt ); // Remove the start xml tag.
|
|
void removeComments( string & txt ); // Remove comment tags.
|
|
void removeAttributes( string & txt ); // Remove attributes from tags.
|
|
void readFile( const string & _filename ); // Read XML file.
|
|
void parseFragment( string & fragment, XMLTree * parent );
|
|
|
|
public:
|
|
/* Constructors */
|
|
XMLFile( const string & _filename );
|
|
|
|
/* Destructor */
|
|
~XMLFile();
|
|
|
|
/* Methods */
|
|
bool exists( const string & path ); // Checks if node exists.
|
|
const string & getValue( const string & path ); // Get node value.
|
|
|
|
void print();
|
|
};
|
|
|
|
#endif
|
|
|