blob: 97cd085853b05032009a59f4a527d9fca1fb0dfd [file] [log] [blame]
Zachary Turnerc2055702015-04-27 17:19:26 +00001//===-- COM.cpp - Implement COM utility classes -----------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements utility classes related to COM.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/COM.h"
15
Nico Weber432a3882018-04-30 14:59:11 +000016#include "llvm/Config/llvm-config.h"
Zachary Turnerc2055702015-04-27 17:19:26 +000017
18// Include the platform-specific parts of this class.
19#ifdef LLVM_ON_UNIX
20#include "Unix/COM.inc"
Sven van Haastregt0dfbf6b2018-08-23 09:42:58 +000021#elif defined(_WIN32)
Zachary Turnerc2055702015-04-27 17:19:26 +000022#include "Windows/COM.inc"
23#endif