summaryrefslogtreecommitdiffstats
path: root/libksirtet/base/inter.h
blob: ac72b61c6e5c62f7695feebf087e29de95d74e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef BASE_INTER_H
#define BASE_INTER_H

class QWidget;


class BaseInterface
{
public:
    BaseInterface() {}
    virtual ~BaseInterface() {}

    virtual void _start() = 0;
    virtual void _pause() = 0;
    virtual bool _isPaused() const = 0;

    void showHighscores(TQWidget *parent);

protected:
    virtual void _showHighscores(TQWidget *parent);
};

#endif