hotspot/src/share/vm/classfile/classFileParser.hpp
changeset 7397 5b173b4ca846
parent 7114 65d21c4c6337
child 7436 dbc43da3d512
--- a/hotspot/src/share/vm/classfile/classFileParser.hpp	Tue Nov 23 15:01:43 2010 -0500
+++ b/hotspot/src/share/vm/classfile/classFileParser.hpp	Tue Nov 23 13:22:55 2010 -0800
@@ -22,6 +22,16 @@
  *
  */
 
+#ifndef SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
+#define SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP
+
+#include "classfile/classFileStream.hpp"
+#include "memory/resourceArea.hpp"
+#include "oops/oop.inline.hpp"
+#include "oops/typeArrayOop.hpp"
+#include "runtime/handles.inline.hpp"
+#include "utilities/accessFlags.hpp"
+
 // Parser for for .class files
 //
 // The bytes describing the class file structure is read from a Stream object
@@ -286,3 +296,5 @@
   static void check_final_method_override(instanceKlassHandle this_klass, TRAPS);
   static void check_illegal_static_method(instanceKlassHandle this_klass, TRAPS);
 };
+
+#endif // SHARE_VM_CLASSFILE_CLASSFILEPARSER_HPP