blob: ff7a02fd3c78b56dd702cdffaa30da86bcac2e4a [file] [log] [blame]
Jon Medhurstaaf37a32013-06-11 12:10:56 +01001/**
Jon Medhurst15ce78d2014-04-10 09:02:02 +01002 * Copyright (C) ARM Limited 2013-2014. All rights reserved.
Jon Medhurstaaf37a32013-06-11 12:10:56 +01003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef EVENTS_XML
10#define EVENTS_XML
11
Jon Medhurste31266f2014-08-04 15:47:44 +010012#include "mxml/mxml.h"
13
Jon Medhurstaaf37a32013-06-11 12:10:56 +010014class EventsXML {
15public:
Jon Medhurste31266f2014-08-04 15:47:44 +010016 mxml_node_t *getTree();
17 char *getXML();
Jon Medhurstaaf37a32013-06-11 12:10:56 +010018 void write(const char* path);
19};
20
21#endif // EVENTS_XML