2017-07-05 10:28:15 +00:00
|
|
|
pragma solidity ^0.4.11;
|
|
|
|
|
|
|
|
import "./HasNoEther.sol";
|
|
|
|
import "./HasNoTokens.sol";
|
|
|
|
import "./HasNoContracts.sol";
|
|
|
|
|
2018-08-01 19:57:12 +00:00
|
|
|
/**
|
2017-07-05 10:28:15 +00:00
|
|
|
* @title Base contract for contracts that should not own things.
|
|
|
|
* @author Remco Bloemen <remco@2π.com>
|
2018-08-01 19:57:12 +00:00
|
|
|
* @dev Solves a class of errors where a contract accidentally becomes owner of Ether, Tokens or
|
2017-07-05 10:28:15 +00:00
|
|
|
* Owned contracts. See respective base contracts for details.
|
|
|
|
*/
|
|
|
|
contract NoOwner is HasNoEther, HasNoTokens, HasNoContracts {
|
|
|
|
}
|