Path: blob/main/contrib/llvm-project/llvm/lib/Support/COM.cpp
35232 views
//===-- COM.cpp - Implement COM utility classes -----------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file implements utility classes related to COM.9//10//===----------------------------------------------------------------------===//1112#include "llvm/Support/COM.h"1314#include "llvm/Config/llvm-config.h"1516// Include the platform-specific parts of this class.17#ifdef LLVM_ON_UNIX18#include "Unix/COM.inc"19#elif defined(_WIN32)20#include "Windows/COM.inc"21#endif222324