1 #ifndef ABOUTIMPL_H 2 #define ABOUTIMPL_H 3 4 #include "about.h" 5 6 /** This subclass exists only so that the about dialog 7 * obeys the strict division of designer generated code 8 * from handwritten code. 9 */ 10 class aboutImpl : public dlgAbout 11 { 12 Q_OBJECT 13 14 public: 15 aboutImpl( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 16 ~aboutImpl(); 17 18 }; 19 20 #endif // ABOUTIMPL_H