COM.cpp 702 B

1234567891011121314151617181920212223
  1. //===-- 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. #include "llvm/Support/COM.h"
  14. #include "llvm/Config/config.h"
  15. // Include the platform-specific parts of this class.
  16. #ifdef LLVM_ON_UNIX
  17. #include "Unix/COM.inc"
  18. #elif LLVM_ON_WIN32
  19. #include "Windows/COM.inc"
  20. #endif