Il2CppGenericInstCompare.h 470 B

123456789101112131415161718
  1. #pragma once
  2. #include "utils/KeyWrapper.h"
  3. struct Il2CppGenericInst;
  4. namespace il2cpp
  5. {
  6. namespace metadata
  7. {
  8. class Il2CppGenericInstCompare
  9. {
  10. public:
  11. bool operator()(const KeyWrapper<const Il2CppGenericInst*>& t1, const KeyWrapper<const Il2CppGenericInst*>& t2) const;
  12. static bool Compare(const KeyWrapper<const Il2CppGenericInst*>& t1, const KeyWrapper<const Il2CppGenericInst*>& t2);
  13. };
  14. } /* namespace vm */
  15. } /* namespace il2cpp */