14 lines
225 B
C++
14 lines
225 B
C++
#pragma once
|
|
#include "z80viewer.h"
|
|
|
|
class zx_128pageviewer : public z80viewer
|
|
{
|
|
public:
|
|
void show();
|
|
void refresh();
|
|
void hide();
|
|
void focus();
|
|
|
|
bool handleEvent(SDL_Event *e);
|
|
};
|