LLVM API Documentation
00001 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file was developed by Reid Spencer and is distributed under the 00006 // University of Illinois Open Source License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This header file implements the operating system Program concept. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #include "llvm/System/Program.h" 00015 00016 namespace llvm { 00017 using namespace sys; 00018 00019 //===----------------------------------------------------------------------===// 00020 //=== WARNING: Implementation here must contain only TRULY operating system 00021 //=== independent code. 00022 //===----------------------------------------------------------------------===// 00023 00024 } 00025 00026 // Include the platform-specific parts of this class. 00027 #include "platform/Program.cpp" 00028 00029 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab