blob: ace8505d6130aa692750d5ccd9c999a0f67621fe [file] [log] [blame]
Reid Spencerb89a2232004-08-25 06:20:07 +00001//===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This header file implements the operating system Path concept.
11//
12//===----------------------------------------------------------------------===//
Reid Spencer8e665952004-08-29 05:24:01 +000013
Reid Spencerb89a2232004-08-25 06:20:07 +000014#include "llvm/System/Path.h"
15
16namespace llvm {
Reid Spencer8e665952004-08-29 05:24:01 +000017using namespace sys;
Reid Spencerb89a2232004-08-25 06:20:07 +000018
19//===----------------------------------------------------------------------===//
20//=== WARNING: Implementation here must contain only TRULY operating system
21//=== independent code.
22//===----------------------------------------------------------------------===//
23
Reid Spencerb89a2232004-08-25 06:20:07 +000024}
25
26// Include the truly platform-specific parts of this class.
27#include "platform/Path.cpp"
Reid Spencerb89a2232004-08-25 06:20:07 +000028
Reid Spencer36853b92004-08-29 19:24:53 +000029// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab