source: Thomson/elec/CrO2/software/gui.h @ 14

Revision 14, 361 bytes checked in by pulkomandy, 16 months ago (diff)

Final version (?) of iup++, which handles callbacks with arguments. Needs C++11.

Line 
1/* CrO2 datassette emulator
2 * Copyright 2012, Adrien Destugues <pulkomandy@pulkomandy.ath.cx>
3 *
4 * Distributed under the terms of the MIT licence.
5 */
6
7#include "iupplusplus.h"
8
9#include <cstdio>
10
11class K5;
12
13class Gui {
14        public:
15                Gui(int* argc, char*** argv);
16                ~Gui();
17
18        private:
19                int menu_open();
20                int menu_exit();
21
22                K5* file;
23};
Note: See TracBrowser for help on using the repository browser.