ObjFW  Artifact [b8a0f5d380]

Artifact b8a0f5d3808fbdb089e86b2e66709fb043214d4c7b9c58a1d8d85ccc4710ae2b:


/*
 * Copyright (c) 2008-2021 Jonathan Schleifer <js@nil.im>
 *
 * All rights reserved.
 *
 * This file is part of ObjFW. It may be distributed under the terms of the
 * Q Public License 1.0, which can be found in the file LICENSE.QPL included in
 * the packaging of this file.
 *
 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#import <Foundation/NSSet.h>

#import "macros.h"

@class OFSet;

OF_ASSUME_NONNULL_BEGIN

@interface NSOFSet: NSSet
{
	OFSet *_set;
}

- (instancetype)initWithOFSet: (OFSet *)set;
@end

OF_ASSUME_NONNULL_END