mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
452 B
Solidity
15 lines
452 B
Solidity
pragma solidity ^0.4.11;
|
|
|
|
import "./HasNoEther.sol";
|
|
import "./HasNoTokens.sol";
|
|
import "./HasNoContracts.sol";
|
|
|
|
/**
|
|
* @title Base contract for contracts that should not own things.
|
|
* @author Remco Bloemen <remco@2π.com>
|
|
* @dev Solves a class of errors where a contract accidentally becomes owner of Ether, Tokens or
|
|
* Owned contracts. See respective base contracts for details.
|
|
*/
|
|
contract NoOwner is HasNoEther, HasNoTokens, HasNoContracts {
|
|
}
|