aboutsummaryrefslogtreecommitdiff
path: root/tools/gator/daemon/EventsXML.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gator/daemon/EventsXML.h')
-rw-r--r--tools/gator/daemon/EventsXML.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/gator/daemon/EventsXML.h b/tools/gator/daemon/EventsXML.h
index ff7a02fd3c78..2b38fa4364e0 100644
--- a/tools/gator/daemon/EventsXML.h
+++ b/tools/gator/daemon/EventsXML.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) ARM Limited 2013-2014. All rights reserved.
+ * Copyright (C) ARM Limited 2013-2015. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
@@ -13,9 +13,16 @@
class EventsXML {
public:
+ EventsXML() {}
+
mxml_node_t *getTree();
char *getXML();
void write(const char* path);
+
+private:
+ // Intentionally unimplemented
+ EventsXML(const EventsXML &);
+ EventsXML &operator=(const EventsXML &);
};
#endif // EVENTS_XML