DeprecatedERC721.sol 550 B

123456789101112131415
  1. pragma solidity ^0.4.23;
  2. import "./ERC721.sol";
  3. /**
  4. * @title ERC-721 methods shipped in OpenZeppelin v1.7.0, removed in the latest version of the standard
  5. * @dev Only use this interface for compatibility with previously deployed contracts
  6. * @dev Use ERC721 for interacting with new contracts which are standard-compliant
  7. */
  8. contract DeprecatedERC721 is ERC721 {
  9. function takeOwnership(uint256 _tokenId) public;
  10. function transfer(address _to, uint256 _tokenId) public;
  11. function tokensOf(address _owner) public view returns (uint256[]);
  12. }