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

main
Last change on this file since c7b4218 was c7b4218, checked in by Adrien Destugues <pulkomandy@…>, 12 years ago
  • Move GUI in its own class
  • Design C++ callbacksystem for IUP
  • Load file from menu

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

  • Property mode set to 100644
File size: 312 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 <iup.h>
8
9class K5;
10
11class Gui {
12 public:
13 Gui(int* argc, char*** argv);
14 ~Gui();
15
16 private:
17 int menu_open();
18
19 K5* file;
20};
Note: See TracBrowser for help on using the repository browser.