Mercurial > hg > batch-feature-extraction-tool
view Source/XMLWrite.h @ 15:585caf503ef5 tip
Tidy up for ROLI
author | Geogaddi\David <d.m.ronan@qmul.ac.uk> |
---|---|
date | Tue, 17 May 2016 18:50:19 +0100 |
parents | 636c989477e7 |
children |
line wrap: on
line source
/* ============================================================================== XMLWrite.h Created: 1 Feb 2016 7:34:54pm Author: David ============================================================================== */ #ifndef XMLWRITE_H_INCLUDED #define XMLWRITE_H_INCLUDED #include "ObservationData.h" #include "FeatureData.h" #include "../JuceLibraryCode/JuceHeader.h" class XMLWrite { public: XMLWrite(); ~XMLWrite(); void Write(std::string filename, FeatureData data); const std::string currentDateTime(); }; #endif // XMLWRITE_H_INCLUDED