Record Class::Status information in oat file

Change-Id: I328de86a89c7d84a211b3aed3d42b8c92c1f3464
diff --git a/src/compiled_class.h b/src/compiled_class.h
new file mode 100644
index 0000000..98f0d9f
--- /dev/null
+++ b/src/compiled_class.h
@@ -0,0 +1,24 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+
+#ifndef ART_SRC_COMPILED_CLASS_H_
+#define ART_SRC_COMPILED_CLASS_H_
+
+#include "object.h"
+
+namespace art {
+
+class CompiledClass {
+ public:
+  CompiledClass(Class::Status status) : status_(status) {};
+  ~CompiledClass() {};
+  Class::Status GetStatus() const {
+    return status_;
+  }
+ private:
+  const Class::Status status_;
+};
+
+}  // namespace art
+
+#endif  // ART_SRC_COMPILED_CLASS_H_
+