~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to dolfin/io/XMLObject.h

  • Committer: Niclas Jansson
  • Date: 2011-06-10 14:33:43 UTC
  • Revision ID: njansson@csc.kth.se-20110610143343-d21p4am8rghiojfm
Added rudimentary header to binary files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 2003-2006 Anders Logg.
2
 
// Licensed under the GNU LGPL Version 2.1.
3
 
//
4
 
// First added:  2003-07-15
5
 
// Last changed: 2006-05-23
6
 
 
7
 
#ifndef __XML_OBJECT_H
8
 
#define __XML_OBJECT_H
9
 
 
10
 
#include <libxml/parser.h>
11
 
#include <string>
12
 
 
13
 
#include <dolfin/common/types.h>
14
 
 
15
 
namespace dolfin
16
 
{
17
 
 
18
 
  class XMLObject
19
 
  {
20
 
  public:
21
 
    
22
 
    /// Constructor
23
 
    XMLObject();
24
 
    
25
 
    /// Destructor
26
 
    virtual ~XMLObject();
27
 
 
28
 
    /// Callback for start of XML element
29
 
    virtual void startElement(const xmlChar* name, const xmlChar** attrs) = 0;
30
 
 
31
 
    /// Callback for end of XML element
32
 
    virtual void endElement(const xmlChar* name) = 0;
33
 
    
34
 
    /// Callback for start of XML file (optional)
35
 
    virtual void open(std::string filename);
36
 
 
37
 
    /// Callback for end of XML file, should return true iff data is ok (optional)
38
 
    virtual bool close();
39
 
    
40
 
  protected:
41
 
 
42
 
    // Parse an integer value
43
 
    int parseInt(const xmlChar* name, const xmlChar** attrs, const char *attribute);
44
 
 
45
 
    // Parse an unsigned integer value
46
 
    uint parseUnsignedInt(const xmlChar* name, const xmlChar** attrs, const char *attribute);
47
 
    
48
 
    // Parse a real value
49
 
    real parseReal(const xmlChar* name, const xmlChar** attrs, const char* attribute);
50
 
    
51
 
    // Parse a string
52
 
    std::string parseString(const xmlChar* name, const xmlChar** attrs, const char* attribute);
53
 
 
54
 
    // Parse a bool 
55
 
    bool parseBool(const xmlChar* name, const xmlChar** attrs, const char* attribute);
56
 
 
57
 
  };
58
 
  
59
 
}
60
 
 
61
 
#endif