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