Mercurial > hg > batch-feature-extraction-tool
view Source/WriteCSV.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 | 25bf17994ef1 |
children |
line wrap: on
line source
/* ============================================================================== WriteCSV.h Created: 29 Aug 2014 3:57:27pm Author: david.ronan ============================================================================== */ #ifndef WRITECSV_H_INCLUDED #define WRITECSV_H_INCLUDED #include "FeatureData.h" #include "ObservationData.h" class WriteCSV { public: WriteCSV(); ~WriteCSV(); void Write(std::string filename, FeatureData data); const std::string currentDateTime(); }; #endif // WRITECSV_H_INCLUDED