File: fltkui_cheats.h

package info (click to toggle)
nestopia 1.52.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,140 kB
  • sloc: cpp: 127,444; xml: 27,234; ansic: 3,635; makefile: 949; sh: 19
file content (16 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _FLTKUI_CHEATS_H_
#define _FLTKUI_CHEATS_H_

class NstChtWindow : public Fl_Double_Window {
//private:
//	bool icfg_running;

public:
	NstChtWindow(int w, int h, const char* t) : Fl_Double_Window(w, h, t) { }
	virtual ~NstChtWindow() { }

	void refresh();
	void populate();
};

#endif