/***************************************************************************
                          abstractpropertyitem.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 ABSTRACTPROPERTYITEM_H
#define ABSTRACTPROPERTYITEM_H

#include <qlistviewitem.h>

/**
 * An abstract property item.
 *
 *@author Richard Moore
 */
class AbstractPropertyItem : public AbstractProprtyItem  {
public: 
	AbstractPropertyItem(QListView *parent, const char *name);
	AbstractPropertyItem(QListViewItem *parent, const char *name);
	~AbstractPropertyItem();

public slots:
	virtual void edit();
	virtual void cancelEdit();
};

#endif






Documentation generated by rich@pegasus on Sun Mar 21 17:37:43 GMT 1999