-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemoModule.h
More file actions
48 lines (36 loc) · 885 Bytes
/
DemoModule.h
File metadata and controls
48 lines (36 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: DemoModule.h
* Author: andy
*
* Created on March 31, 2017, 2:41 PM
*/
#include <QObject>
#include <QString>
#include <QDateTime>
#include "qchartviewer.h"
#ifndef DEMOMODULE_H
#define DEMOMODULE_H
class DemoModule : public QObject {
Q_OBJECT
public:
DemoModule();
~DemoModule();
virtual QString getName() {
return "";
}
virtual int getNoOfCharts() {
return 0;
}
virtual int getChartsGroup() {
return 1;
}
virtual void createChart(QChartViewer *viewer, const int &ticker, QDateTime startDate, QDateTime endDate, int TimeFrame, QString ChartType, int BallSize) {
}
private:
};
#endif /* DEMOMODULE_H */