/***************************************************************************
type.h - description
-------------------
begin : Tue Mar 16 1999
copyright : (C) 1999 by Richard Moore
email : rich@kde.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef TYPE_H
#define TYPE_H
#include <qobject.h>
/**
* Represents a Type.
*
*@author Richard Moore
*/
class Type : public QObject {
public:
Type();
~Type();
const char *name();
void setName(const char *name);
QWidget *createView(QWidget *parent);
QWidget *createEdit(QWidget *parent, Value *value);
};
#endif
Documentation generated by rich@pegasus on Sun Mar 21 17:37:43 GMT 1999