Mercurial > hg > midi-score-follower
view addons/ofxFileDialogOSX/src/ofxFileDialogOSX.h @ 1:1a32ce016bb9
Changed bestEstimate timing to work via time sent from Max not the elapsed time. This had caused some problems, but this version now working surprisingly well on MIDI files with variable timing.
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Thu, 18 Aug 2011 23:27:42 +0100 |
parents | b299a65a3ad0 |
children |
line wrap: on
line source
/* * ofxFileDialogOSX.h * * Created by timknapen on 07/05/10. * www.wereldderindianen.be * code stolen from 'mantissa' over here: * http://www.openframeworks.cc/forum/viewtopic.php?p=5028#p5028 * */ #ifndef _OFX_FILE_DIALOG_OSX_ #define _OFX_FILE_DIALOG_OSX_ #include "ofMain.h" class ofxFileDialogOSX { public: static int openFile(string& URL); static int saveFile(string& URL, string& fileURL); private: }; #endif