blob: 03b2c9673eed5177000760e6aec9b0b7b70750b2 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#ifndef ART_SRC_DEX_VERIFY_H_
#define ART_SRC_DEX_VERIFY_H_
#include "macros.h"
#include "object.h"
namespace art {
class DexVerify {
public:
static bool VerifyClass(Class* klass);
private:
static bool VerifyMethod(Method* method);
DISALLOW_COPY_AND_ASSIGN(DexVerify);
};
} // namespace art
#endif // ART_SRC_DEX_VERIFY_H_