implement new method
[oota-llvm.git] / utils / TableGen / CodeEmitterGen.h
index 4b87da5067ee5683d30ab36f8fa62267570b5881..19ca5452f5516e64f2d71eca1544f25651df747c 100644 (file)
@@ -1,4 +1,11 @@
 //===- CodeEmitterGen.h - Code Emitter Generator ----------------*- 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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // FIXME: document
 //
@@ -9,6 +16,8 @@
 
 #include "TableGenBackend.h"
 
+namespace llvm {
+
 class CodeEmitterGen : public TableGenBackend {
   RecordKeeper &Records;
 public:
@@ -21,4 +30,6 @@ private:
   void emitGetValueBit(std::ostream &o, const std::string &Namespace);
 };
 
+} // End llvm namespace
+
 #endif