source: thomson/elec/CrO2/software/gui.h@ f9263dd

main
Last change on this file since f9263dd was f9263dd, checked in by Adrien Destugues <pulkomandy@…>, 12 years ago

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

git-svn-id: svn://localhost/thomson@14 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

  • Property mode set to 100644
File size: 361 bytes
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.