Mercurial > hg > batch-feature-extraction-tool
diff Source/.svn/text-base/AudioFileData.h.svn-base @ 0:25bf17994ef1
First commit. VS2013, Codeblocks and Mac OSX configuration
author | Geogaddi\David <d.m.ronan@qmul.ac.uk> |
---|---|
date | Thu, 09 Jul 2015 01:12:16 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Source/.svn/text-base/AudioFileData.h.svn-base Thu Jul 09 01:12:16 2015 +0100 @@ -0,0 +1,34 @@ +/* + ============================================================================== + + AudioFileData.h + Created: 27 Aug 2014 3:41:03pm + Author: david.ronan + + ============================================================================== +*/ + +#ifndef AUDIOFILEDATA_H_INCLUDED +#define AUDIOFILEDATA_H_INCLUDED + +#include<string> +#include<vector> + + +class AudioFileData +{ + public: + AudioFileData(); + ~AudioFileData(); + + AudioFileData(std::vector<std::string> fileNames, std::vector<std::string> labels){m_FileNames = fileNames; m_Labels = labels;}; + + std::vector<std::string> GetFileNames(){return m_FileNames;}; + std::vector<std::string> GetLabels(){return m_Labels;}; + + private: + std::vector<std::string> m_FileNames; + std::vector<std::string> m_Labels; +}; + +#endif // AUDIOFILEDATA_H_INCLUDED