summaryrefslogtreecommitdiffstats
path: root/libksirtet/base/inter.h
blob: 446a77d3bd3ceff943a7df927716bf2ea03767fd (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(QWidget *parent);

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

#endif