SupportsInterfaceWithLookupMock.sol 270 B

123456789101112
  1. pragma solidity ^0.4.23;
  2. import "../introspection/SupportsInterfaceWithLookup.sol";
  3. contract SupportsInterfaceWithLookupMock is SupportsInterfaceWithLookup {
  4. function registerInterface(bytes4 _interfaceId)
  5. public
  6. {
  7. _registerInterface(_interfaceId);
  8. }
  9. }