Comment out resetCapabilities(). Not sure if it's needed
[harmattan/cameraplus] / lib / qtcamzoom.h
1 // -*- c++ -*-
2
3 #include "qtcamcapability.h"
4
5 class QtCamZoomPrivate;
6
7 class QtCamZoom : public QtCamCapability {
8   Q_OBJECT
9
10 public:
11   QtCamZoom(QtCamDevice *dev, QObject *parent = 0);
12   ~QtCamZoom();
13
14   qreal value();
15   bool setValue(qreal zoom);
16   qreal minimumValue();
17   qreal maximumValue();
18 };