view Source/ParseCSV.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
/*
  ==============================================================================

    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