blob: 8c56a5f37fc4d16de93dee6ec0adbcfabc09b155 [file] [log] [blame]
//===-- CFCBundle.h ---------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCBUNDLE_H
#define LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCBUNDLE_H
#include "CFCReleaser.h"
class CFCBundle : public CFCReleaser<CFBundleRef> {
public:
// Constructors and Destructors
CFCBundle(const char *path = NULL);
CFCBundle(CFURLRef url);
virtual ~CFCBundle();
CFURLRef CopyExecutableURL() const;
CFStringRef GetIdentifier() const;
CFTypeRef GetValueForInfoDictionaryKey(CFStringRef key) const;
bool GetPath(char *dst, size_t dst_len);
bool SetPath(const char *path);
private:
// Disallow copy and assignment constructors
CFCBundle(const CFCBundle &) = delete;
const CFCBundle &operator=(const CFCBundle &) = delete;
};
#endif // LLDB_SOURCE_HOST_MACOSX_CFCPP_CFCBUNDLE_H