Mercurial > hg > batch-feature-extraction-tool
view Source/WriteCSV.h @ 1:e86e9c111b29
Updates stuff that potentially fixes the memory leak and also makes it work on Windows and Linux (Need to test). Still have to fix fftw include for linux in Jucer.
author | David Ronan <d.m.ronan@qmul.ac.uk> |
---|---|
date | Thu, 09 Jul 2015 15:01:32 +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