"Fossies" - the Fresh Open Source Software Archive

Member "tipograf-0.5/src/aboutImpl.h" (13 Dec 2003, 403 Bytes) of package /linux/privat/old/tipograf-0.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    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