/***************************************************************************
                          property.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 PROPERTY_H
#define PROPERTY_H

#include <qobject.h>

/**
 * Class that represents a Property of a Component.
 *
 * @author Richard Moore
 */
class Property : public QObject  {
public: 
	Property();
	~Property();

	Type *type();
	const char *name();
	void setName(const char *name);
};

#endif

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