Implemented QtCamEvComp and QtCamVideoTorch
[harmattan/cameraplus] / lib / qtcamevcomp.h
1 // -*- c++ -*-
2
3 #ifndef QT_CAM_EV_COMP_H
4 #define QT_CAM_EV_COMP_H
5
6 #include "qtcamcapability.h"
7
8 class QtCamEvComp : public QtCamCapability {
9   Q_OBJECT
10
11 public:
12   QtCamEvComp(QtCamDevice *dev, QObject *parent = 0);
13   ~QtCamEvComp();
14
15   qreal value();
16   bool setValue(qreal val);
17
18   qreal minimumValue();
19   qreal maximumValue();
20 };
21
22 #endif /* QT_CAM_EV_COMP_H */