summaryrefslogtreecommitdiffstats
path: root/klickety/main.h
blob: 35dd3920bc02ec2e45ede0b6b2df6e46bffc8b57 (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 *parent)
        { return new KLBoard(parent); }
    virtual BaseInterface *createInterface(TQWidget *parent)
        { return new Field(parent); }
};

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

#endif