Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
737 B
C++
Raw Permalink Normal View History

2015-04-27 17:19:26 +00:00
//===-- COM.cpp - Implement COM utility classes -----------------*- 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
2015-04-27 17:19:26 +00:00
//
//===----------------------------------------------------------------------===//
//
// This file implements utility classes related to COM.
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/COM.h"
2018-04-30 14:59:11 +00:00
#include "llvm/Config/llvm-config.h"
2015-04-27 17:19:26 +00:00
// Include the platform-specific parts of this class.
#ifdef LLVM_ON_UNIX
#include "Unix/COM.inc"
2018-08-23 09:42:58 +00:00
#elif defined(_WIN32)
2015-04-27 17:19:26 +00:00
#include "Windows/COM.inc"
#endif