[LoopVectorizer] Add support for chaining partial reductions (#120272)
[llvm-project.git] / lldb / source / Host / macosx / cfcpp / CFCMutableSet.h
blob3b8f93ad8144e79d15a412e18aa5754c870cd4c6
1 //===-- CFCMutableSet.h -----------------------------------------*- C++ -*-===//
2 //
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
6 //
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> {
15 public:
16 // Constructors and Destructors
17 CFCMutableSet(CFMutableSetRef s = NULL);
18 CFCMutableSet(const CFCMutableSet &rhs);
19 ~CFCMutableSet() override;
21 // Operators
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();
31 protected:
32 // Classes that inherit from CFCMutableSet can see and modify these
34 private:
35 // For CFCMutableSet only
38 #endif // LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H