summaryrefslogtreecommitdiffstats
path: root/examples/corelib/ipc/sharedmemory/dialog.h
blob: 0f8abaa8b60c9ca0aa806a33e66ca5aca605ec5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef DIALOG_H
#define DIALOG_H

#include <QDialog>
#include <QSharedMemory>
#include "ui_dialog.h"

//! [0]
class Dialog : public QDialog
{
    Q_OBJECT

  public:
    Dialog(QWidget *parent = nullptr);

  public slots:
    void loadFromFile();
    void loadFromMemory();

 private:
    void detach();

  private:
    Ui::Dialog ui;
    QSharedMemory sharedMemory;
};
//! [0]

#endif