QCodeEdit 2.2
|
00001 /* 00002 Transition header file. 00003 */ 00004 00005 #ifndef _QFORMAT_FACTORY_H_ 00006 00007 #include "qformatscheme.h" 00008 00009 class QFormatFactory : public QFormatScheme 00010 { 00011 public: 00012 inline QFormatFactory(QObject *p = 0) : QFormatScheme(p) {} 00013 inline QFormatFactory(const QString& f, QObject *p = 0) : QFormatScheme(f, p) {} 00014 }; 00015 00016 #endif