ocarina/include/ocarina/chooser.h
Bryan Schumaker 0b1684620d ocarina: Add the chooser to the ocarina namespace
This removes some ocarina_*() functions
2011-10-29 15:52:03 -04:00

16 lines
171 B
C++

#ifndef OCARINA_CHOOSER_H
#define OCARINA_CHOOSER_H
#include <string>
using namespace std;
namespace ocarina
{
string choose_file();
string choose_dir();
};
#endif