Welcome to mirror list, hosted at ThFree Co, Russian Federation.

askexperimentalvirtualfilesfeaturemessagebox.h « gui « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2c34adc4f35d46bce44f1712c0665c15201f7ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <QMessageBox>

namespace OCC {

/**
 * A simple message box used whenever we have to ask the user whether to enable VFS, which is an experimental feature.
 * The dialog will clean itself up after it has been closed.
 */
class AskExperimentalVirtualFilesFeatureMessageBox : public QMessageBox
{
public:
    explicit AskExperimentalVirtualFilesFeatureMessageBox(QWidget *parent = nullptr);
};

}