blob: a32a38fde729f3a6eb964a71cbac79401aa3550d [file] [log] [blame]
/* CrO2 datassette emulator
* Copyright 2012, Adrien Destugues <pulkomandy@pulkomandy.ath.cx>
*
* Distributed under the terms of the MIT licence.
*/
#include "iupplusplus.h"
#include <cstdio>
class K5;
class Gui {
public:
Gui(int* argc, char*** argv);
~Gui();
private:
int menu_open();
int menu_exit();
int setPlaying(int state);
K5* file;
};