mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 18:16:45 +02:00
25 lines
452 B
C++
25 lines
452 B
C++
//
|
|
// SnapshotShareDialog.h
|
|
// hifi
|
|
//
|
|
// Created by Stojce Slavkovski on 2/16/14.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__snapshotShareDialog__
|
|
#define __hifi__snapshotShareDialog__
|
|
|
|
#include "ui_shareSnapshot.h"
|
|
|
|
class SnapshotShareDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SnapshotShareDialog(QString fileName, QWidget* parent = 0);
|
|
|
|
private:
|
|
QString _fileName;
|
|
Ui_SnapshotShareDialog ui;
|
|
};
|
|
|
|
#endif /* defined(__hifi__snapshotShareDialog__) */
|