1 //===-- CFCMutableSet.h -----------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H
10 #define LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H
12 #include "CFCReleaser.h"
14 class CFCMutableSet
: public CFCReleaser
<CFMutableSetRef
> {
16 // Constructors and Destructors
17 CFCMutableSet(CFMutableSetRef s
= NULL
);
18 CFCMutableSet(const CFCMutableSet
&rhs
);
19 ~CFCMutableSet() override
;
22 const CFCMutableSet
&operator=(const CFCMutableSet
&rhs
);
24 CFIndex
GetCount() const;
25 CFIndex
GetCountOfValue(const void *value
) const;
26 const void *GetValue(const void *value
) const;
27 const void *AddValue(const void *value
, bool can_create
);
28 void RemoveValue(const void *value
);
29 void RemoveAllValues();
32 // Classes that inherit from CFCMutableSet can see and modify these
35 // For CFCMutableSet only
38 #endif // LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H