Mercurial > hg > batch-feature-extraction-tool
view Source/ParseCSV.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
/* ============================================================================== ParseCSV.h Created: 27 Aug 2014 3:18:54pm Author: david.ronan ============================================================================== */ #ifndef PARSECSV_H_INCLUDED #define PARSECSV_H_INCLUDED #include <fstream> #include "AudioFileData.h" class ParseCSV { public: ParseCSV(); ~ParseCSV(); AudioFileData Parse(std::string fileName); private: std::vector<std::string> ReadLines(std::ifstream& is); AudioFileData m_AudioFileData; }; #endif // PARSECSV_H_INCLUDED