comparison libs/ofxFileDialogOSX/src/ofxFileDialogOSX.h @ 0:bcb0d40158f4

started audio file loader project - using oF_061
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 30 Aug 2011 20:18:34 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bcb0d40158f4
1 /*
2 * ofxFileDialogOSX.h
3 *
4 * Created by timknapen on 07/05/10.
5 * www.wereldderindianen.be
6 * code stolen from 'mantissa' over here:
7 * http://www.openframeworks.cc/forum/viewtopic.php?p=5028#p5028
8 *
9 */
10
11
12 #ifndef _OFX_FILE_DIALOG_OSX_
13 #define _OFX_FILE_DIALOG_OSX_
14
15 #include "ofMain.h"
16
17 class ofxFileDialogOSX {
18 public:
19 static int openFile(string& URL);
20 static int saveFile(string& URL, string& fileURL);
21 private:
22
23
24 };
25
26 #endif