| 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 |
|
|---|
| 11 | class K5;
|
|---|
| 12 |
|
|---|
| 13 | class 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.