summaryrefslogtreecommitdiffstats
path: root/klickety/main.h
blob: 6ff71a4c58d2f8a438df703c2290f8630bfac141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef KL_MAIN_H
#define KL_MAIN_H

#include "base/main.h"
#include "base/factory.h"
#include "board.h"
#include "field.h"


class KLFactory : public BaseFactory
{
 public:
    KLFactory();

 protected:
    virtual BaseBoard *createBoard(bool, TQWidget *tqparent)
        { return new KLBoard(tqparent); }
    virtual BaseInterface *createInterface(TQWidget *tqparent)
        { return new Field(tqparent); }
};

class KLMainWindow : public BaseMainWindow
{
 Q_OBJECT
  TQ_OBJECT
 public:
    KLMainWindow();
};

#endif