summaryrefslogtreecommitdiffstats
path: root/kfouleggs/field.h
blob: df7812f20bae53ba2b7ff4190cf11cebdbee5e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef FE_FIELD_H
#define FE_FIELD_H

#include "common/field.h"
#include "common/misc_ui.h"


class FEField : public Field
{
 Q_OBJECT
 public:
    FEField(QWidget *parent);

 private slots:
    virtual void removedUpdated();
    void settingsChanged();
};

#endif