Source: /app/hbasic/hbasic/hbdata/hbproperty.h
|
|
|
|
#ifndef HBPROPERTY_H
#define HBPROPERTY_H
#include
#include
#include "hbobject.h"
#define PROP_TYPE_READ 1
#define PROP_TYPE_WRITE 2
class HBProperty : public QObject, public HBObject
{
public:
HBProperty( char *name );
/* 1 = Read 2=Write 4=Don't display in editor */
short type;
/* Name for property derived from QObject */
QVariant *value;
void setPropertyType( short new_type );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |