e2c8a5011b47226b31dddd5dbaa75597713d42dd
[marketstoday] / src / cpp / configqmlview.h
1 /*
2 @version: 0.4
3 @author: Sudheer K. <scifi1947 at gmail.com>
4 @license: GNU General Public License
5 */
6
7 #ifndef CONFIGQMLVIEW_H
8 #define CONFIGQMLVIEW_H
9
10 #include <QDeclarativeView>
11 #include "marketstodayqmlview.h"
12 #include "logutility.h"
13
14 class ConfigQMLView : public QDeclarativeView
15 {
16     Q_OBJECT
17
18 public:
19     ConfigQMLView(QWidget *parent = 0, MarketsTodayQMLView *parentView = 0);
20     ~ConfigQMLView();
21
22 public slots:
23     void configClosed();
24
25 private:
26     MarketsTodayQMLView *stockQuotesView;
27     LogUtility * const logUtility;
28 };
29
30 #endif // CONFIGQMLVIEW_H