comparison Source/XMLWrite.h @ 13:a64055168b9b

Added XML Support
author Geogaddi\David <d.m.ronan@qmul.ac.uk>
date Fri, 05 Feb 2016 19:21:42 +0000
parents
children 636c989477e7
comparison
equal deleted inserted replaced
12:761289a660c6 13:a64055168b9b
1 /*
2 ==============================================================================
3
4 XMLWrite.h
5 Created: 1 Feb 2016 7:34:54pm
6 Author: David
7
8 ==============================================================================
9 */
10
11 #ifndef XMLWRITE_H_INCLUDED
12 #define XMLWRITE_H_INCLUDED
13
14 #include "ObservationData.h"
15 #include "FeatureData.h"
16 #include "../JuceLibraryCode/modules/juce_core/juce_core.h"
17
18 class XMLWrite
19 {
20 public:
21 XMLWrite();
22 ~XMLWrite();
23 void Write(std::string filename, FeatureData data);
24 const std::string currentDateTime();
25 };
26
27
28
29
30 #endif // XMLWRITE_H_INCLUDED