Mercurial > hg > multitrack-audio-matcher
view src/OutputDataWriter.h @ 50:93d21c20cfbc
Added Markers and the ability to switch to these points in the file when playing
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Thu, 14 Jun 2012 20:04:49 +0100 |
parents | b7ad807c9cde |
children | e359b9bad811 |
line wrap: on
line source
/* * outputDataWriter.h * MultipleAudioMathcher * * Created by Andrew on 25/04/2012. * Copyright 2012 QMUL. All rights reserved. * */ #ifndef OUTPUT_DATA_WRITER_H #define OUTPUT_DATA_WRITER_H // basic file operations for text file stuff #include <iostream> #include <fstream> using namespace std; class OutputDataWriter{ public: OutputDataWriter(); std::string filepath; ofstream outputFile; void openFile(); void closeFile(); void writeOutput(const int& liveTime, const int& rehearsalTime, const int& playedRehearsalTime); }; #endif