You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
//===-- 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
|