implement new method
[oota-llvm.git] / utils / TableGen / CodeGenWrappers.h
index 595542a24ad608973cc7d35b38b4fbbb7d366e67..948360e2b11cce1821da048014f2039bb65a40a5 100644 (file)
@@ -1,4 +1,11 @@
 //===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // These classes wrap target description classes used by the various code
 // generation TableGen backends.  This makes it easier to access the data and
 
 #include "llvm/CodeGen/ValueTypes.h"
 #include <iosfwd>
+#include <string>
 #include <vector>
+
+namespace llvm {
+
 class Record;
 class RecordKeeper;
 
@@ -52,4 +63,6 @@ public:
   // CodeGenInstructionSet *getInstructionSet -
 };
 
+} // End llvm namespace
+
 #endif