1
// Copyright (C) 2007 Anders Logg.
2
// Licensed under the GNU LGPL Version 2.1.
4
// First added: 2007-04-13
5
// Last changed: 2007-04-13
7
#ifndef __XML_FINITE_ELEMENT_H
8
#define __XML_FINITE_ELEMENT_H
10
#include "XMLObject.h"
15
class XMLFiniteElement: public XMLObject
19
XMLFiniteElement(std::string& signature);
21
void startElement(const xmlChar* name, const xmlChar** attrs);
22
void endElement (const xmlChar* name);
26
enum ParserState { OUTSIDE, INSIDE_FINITE_ELEMENT, DONE };
28
void readFiniteElement(const xmlChar* name, const xmlChar** attrs);
30
std::string& signature;