languages/php/phpconfigparserwidget.h
Go to the documentation of this file.00001 #ifndef PHPCONFIGPARSERWIDGET_H 00002 #define PHPCONFIGPARSERWIDGET_H 00003 00004 #include "phpconfigparserwidgetbase.h" 00005 #include <qstring.h> 00006 class KProcess; 00007 class PHPConfigData; 00008 00009 class PHPConfigParserWidget : public PHPConfigParserWidgetBase 00010 { 00011 Q_OBJECT 00012 00013 public: 00014 PHPConfigParserWidget( PHPConfigData* data,QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 00015 ~PHPConfigParserWidget(); 00016 public slots: 00017 void accept(); 00018 private: 00019 PHPConfigData* m_configData; 00020 }; 00021 00022 #endif