summaryrefslogtreecommitdiffstats
path: root/libksirtet/base/inter.h
blob: 3bf394db9ca223c2939f8d659abce3a437844867 (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 TQWidget;


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