You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
298 B
14 lines
298 B
#ifndef KDCHARTWRAPPERFACTORY_H
|
|
#define KDCHARTWRAPPERFACTORY_H
|
|
#include <qswrapperfactory.h>
|
|
|
|
class KDChartWrapperFactory :public QSWrapperFactory
|
|
{
|
|
public:
|
|
KDChartWrapperFactory();
|
|
virtual QObject* create ( const QString& className, void* ptr );
|
|
};
|
|
|
|
#endif /* KDCHARTWRAPPERFACTORY_H */
|
|
|