NoOwner.sol 452 B

1234567891011121314
  1. pragma solidity ^0.4.11;
  2. import "./HasNoEther.sol";
  3. import "./HasNoTokens.sol";
  4. import "./HasNoContracts.sol";
  5. /**
  6. * @title Base contract for contracts that should not own things.
  7. * @author Remco Bloemen <remco@2π.com>
  8. * @dev Solves a class of errors where a contract accidentally becomes owner of Ether, Tokens or
  9. * Owned contracts. See respective base contracts for details.
  10. */
  11. contract NoOwner is HasNoEther, HasNoTokens, HasNoContracts {
  12. }