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

QtUtils.h « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d53c243c0fd8e63b118e09f843f8bef5bdc898d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.

#ifndef MUMBLE_QTUTILS_H_
#define MUMBLE_QTUTILS_H_

class QObject;

/**
 * A deleter function to be used for QObjects that must not be deleted using
 * delete directly but rather by calling deleteLater() on them (and thus letting
 * Qt perform the actual deletion).
 *
 * This function is intended to be used in smart-pointers holding QObjects.
 */
void deleteQObject(QObject *object);

#endif // MUMBLE_QTUTILS_H_