mumble-voip_mumble/src/Group.h

42 lines
1.0 KiB
C++

// Copyright 2007-2023 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_GROUP_H_
#define MUMBLE_GROUP_H_
#include <QtCore/QSet>
class Channel;
class User;
class ServerUser;
class Group {
private:
Q_DISABLE_COPY(Group)
public:
/// A flag indicating whether access tokens shall be treated case-sensitive or case-insensitive
static const Qt::CaseSensitivity accessTokenCaseSensitivity;
Channel *c;
QString qsName;
bool bInherit;
bool bInheritable;
QSet< int > qsAdd;
QSet< int > qsRemove;
QSet< int > qsTemporary;
Group(Channel *assoc, const QString &name);
#ifdef MURMUR
QSet< int > members();
static QSet< QString > groupNames(Channel *c);
static Group *getGroup(Channel *c, QString name);
static bool appliesToUser(const Channel &currentChannel, const Channel &aclChannel, QString groupSpecification,
const ServerUser &user);
#endif
};
#endif