LLDB mainline
CFCMutableSet.h
Go to the documentation of this file.
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//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H
10#define LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H
11
12#include "CFCReleaser.h"
13
14class CFCMutableSet : public CFCReleaser<CFMutableSetRef> {
15public:
16 // Constructors and Destructors
19 ~CFCMutableSet() override;
20
21 // Operators
22 const CFCMutableSet &operator=(const CFCMutableSet &rhs);
23
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();
30
31protected:
32 // Classes that inherit from CFCMutableSet can see and modify these
33
34private:
35 // For CFCMutableSet only
36};
37
38#endif // LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCMUTABLESET_H
CFIndex GetCountOfValue(const void *value) const
const CFCMutableSet & operator=(const CFCMutableSet &rhs)
void RemoveAllValues()
const void * GetValue(const void *value) const
void RemoveValue(const void *value)
CFCMutableSet(const CFCMutableSet &rhs)
const void * AddValue(const void *value, bool can_create)
~CFCMutableSet() override
CFIndex GetCount() const