blob: 98f0d9fcbaa5348c2f0ba486800431ea20c0547a [file] [log] [blame]
// 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_