1234567891011121314151617181920212223242526272829303132333435363738 |
- pragma solidity ^0.5.7;
- /**
- * @title Roles
- * @dev Library for managing addresses assigned to a Role.
- */
- library Roles {
- struct Role {
- mapping (address => bool) bearer;
- }
- /**
- * @dev Give an account access to this role.
- */
- function add(Role storage role, address account) internal {
- require(!has(role, account));
- role.bearer[account] = true;
- }
- /**
- * @dev Remove an account's access to this role.
- */
- function remove(Role storage role, address account) internal {
- require(has(role, account));
- role.bearer[account] = false;
- }
- /**
- * @dev Check if an account has this role.
- * @return bool
- */
- function has(Role storage role, address account) internal view returns (bool) {
- require(account != address(0));
- return role.bearer[account];
- }
- }
|