Mercurial > hg > midi-score-follower
annotate addons/ofxFileDialogOSX/src/ofxFileDialogOSX.h @ 52:13194a9dca77 tip
Added exporting of image and text data
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Tue, 17 Jul 2012 22:13:10 +0100 |
parents | b299a65a3ad0 |
children |
rev | line source |
---|---|
andrew@0 | 1 /* |
andrew@0 | 2 * ofxFileDialogOSX.h |
andrew@0 | 3 * |
andrew@0 | 4 * Created by timknapen on 07/05/10. |
andrew@0 | 5 * www.wereldderindianen.be |
andrew@0 | 6 * code stolen from 'mantissa' over here: |
andrew@0 | 7 * http://www.openframeworks.cc/forum/viewtopic.php?p=5028#p5028 |
andrew@0 | 8 * |
andrew@0 | 9 */ |
andrew@0 | 10 |
andrew@0 | 11 |
andrew@0 | 12 #ifndef _OFX_FILE_DIALOG_OSX_ |
andrew@0 | 13 #define _OFX_FILE_DIALOG_OSX_ |
andrew@0 | 14 |
andrew@0 | 15 #include "ofMain.h" |
andrew@0 | 16 |
andrew@0 | 17 class ofxFileDialogOSX { |
andrew@0 | 18 public: |
andrew@0 | 19 static int openFile(string& URL); |
andrew@0 | 20 static int saveFile(string& URL, string& fileURL); |
andrew@0 | 21 private: |
andrew@0 | 22 |
andrew@0 | 23 |
andrew@0 | 24 }; |
andrew@0 | 25 |
andrew@0 | 26 #endif |