typo fix
[pykit.git] / MainWindow.hh
1 // $Id$
2 //
3 // Copyright (C) 2010
4 //     Stefan Bund <info@j32.de>
5
6 /** \file
7     \brief MainWindow public header */
8
9 #ifndef HH_PyKit_MainWindow_
10 #define HH_PyKit_MainWindow_ 1
11
12 // Custom includes
13 #include <QMainWindow>
14 #include <QUrl>
15
16 //#include "MainWindow.mpp"
17 ///////////////////////////////hh.p////////////////////////////////////////
18
19 namespace pykit {
20
21     class Publisher;
22
23     class MainWindow : public QMainWindow
24     {
25         Q_OBJECT;
26     public:
27         MainWindow(QUrl const & url, Publisher * publisher, QWidget * parent = 0);
28     };
29 }
30
31 ///////////////////////////////hh.e////////////////////////////////////////
32 //#include "MainWindow.cci"
33 //#include "MainWindow.ct"
34 //#include "MainWindow.cti"
35 #endif
36
37 \f
38 // Local Variables:
39 // mode: c++
40 // fill-column: 100
41 // comment-column: 40
42 // c-file-style: "j32"
43 // indent-tabs-mode: nil
44 // ispell-local-dictionary: "american"
45 // compile-command: "scons -U"
46 // End: