Mercurial > hg > batch-feature-extraction-tool
comparison 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 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:25bf17994ef1 |
|---|---|
| 1 /* | |
| 2 ============================================================================== | |
| 3 | |
| 4 AudioFileData.h | |
| 5 Created: 27 Aug 2014 3:41:03pm | |
| 6 Author: david.ronan | |
| 7 | |
| 8 ============================================================================== | |
| 9 */ | |
| 10 | |
| 11 #ifndef AUDIOFILEDATA_H_INCLUDED | |
| 12 #define AUDIOFILEDATA_H_INCLUDED | |
| 13 | |
| 14 #include<string> | |
| 15 #include<vector> | |
| 16 | |
| 17 | |
| 18 class AudioFileData | |
| 19 { | |
| 20 public: | |
| 21 AudioFileData(); | |
| 22 ~AudioFileData(); | |
| 23 | |
| 24 AudioFileData(std::vector<std::string> fileNames, std::vector<std::string> labels){m_FileNames = fileNames; m_Labels = labels;}; | |
| 25 | |
| 26 std::vector<std::string> GetFileNames(){return m_FileNames;}; | |
| 27 std::vector<std::string> GetLabels(){return m_Labels;}; | |
| 28 | |
| 29 private: | |
| 30 std::vector<std::string> m_FileNames; | |
| 31 std::vector<std::string> m_Labels; | |
| 32 }; | |
| 33 | |
| 34 #endif // AUDIOFILEDATA_H_INCLUDED |
