Swiftray  1.0
ios-image-picker.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifdef Q_OS_IOS
4 
5 #include <QObject>
6 #include <QImage>
7 
8 class ImagePicker : public QObject {
9 Q_OBJECT
10 
11 public:
12  static ImagePicker *g_currentImagePicker;
13 
14 public slots:
15 
16  void show(void);
17 
18 signals:
19 
20  void imageSelected(const QImage image);
21 };
22 
23 #endif