diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
commit | 88c643b6fec27eec436c8d138fee6346e92337d6 (patch) | |
tree | 82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /source/Host/macosx/cfcpp/CFCMutableSet.cpp | |
parent | 94994d372d014ce4c8758b9605d63fae651bd8aa (diff) |
Notes
Diffstat (limited to 'source/Host/macosx/cfcpp/CFCMutableSet.cpp')
-rw-r--r-- | source/Host/macosx/cfcpp/CFCMutableSet.cpp | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/source/Host/macosx/cfcpp/CFCMutableSet.cpp b/source/Host/macosx/cfcpp/CFCMutableSet.cpp deleted file mode 100644 index b8bf81e1b52e..000000000000 --- a/source/Host/macosx/cfcpp/CFCMutableSet.cpp +++ /dev/null @@ -1,85 +0,0 @@ -//===-- CFCMutableSet.cpp ---------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "CFCMutableSet.h" - - -//---------------------------------------------------------------------- -// CFCString constructor -//---------------------------------------------------------------------- -CFCMutableSet::CFCMutableSet(CFMutableSetRef s) - : CFCReleaser<CFMutableSetRef>(s) {} - -//---------------------------------------------------------------------- -// CFCMutableSet copy constructor -//---------------------------------------------------------------------- -CFCMutableSet::CFCMutableSet(const CFCMutableSet &rhs) - : CFCReleaser<CFMutableSetRef>(rhs) {} - -//---------------------------------------------------------------------- -// CFCMutableSet copy constructor -//---------------------------------------------------------------------- -const CFCMutableSet &CFCMutableSet::operator=(const CFCMutableSet &rhs) { - if (this != &rhs) - *this = rhs; - return *this; -} - -//---------------------------------------------------------------------- -// Destructor -//---------------------------------------------------------------------- -CFCMutableSet::~CFCMutableSet() {} - -CFIndex CFCMutableSet::GetCount() const { - CFMutableSetRef set = get(); - if (set) - return ::CFSetGetCount(set); - return 0; -} - -CFIndex CFCMutableSet::GetCountOfValue(const void *value) const { - CFMutableSetRef set = get(); - if (set) - return ::CFSetGetCountOfValue(set, value); - return 0; -} - -const void *CFCMutableSet::GetValue(const void *value) const { - CFMutableSetRef set = get(); - if (set) - return ::CFSetGetValue(set, value); - return NULL; -} - -const void *CFCMutableSet::AddValue(const void *value, bool can_create) { - CFMutableSetRef set = get(); - if (set == NULL) { - if (!can_create) - return NULL; - set = ::CFSetCreateMutable(kCFAllocatorDefault, 0, &kCFTypeSetCallBacks); - reset(set); - } - if (set != NULL) { - ::CFSetAddValue(set, value); - return value; - } - return NULL; -} - -void CFCMutableSet::RemoveValue(const void *value) { - CFMutableSetRef set = get(); - if (set) - ::CFSetRemoveValue(set, value); -} - -void CFCMutableSet::RemoveAllValues() { - CFMutableSetRef set = get(); - if (set) - ::CFSetRemoveAllValues(set); -} |