You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
424 B
21 lines
424 B
pragma solidity ^0.4.24;
|
|
|
|
import "../AutoIncrementing.sol";
|
|
|
|
|
|
contract AutoIncrementingImpl {
|
|
using AutoIncrementing for AutoIncrementing.Counter;
|
|
|
|
uint256 public theId;
|
|
|
|
// use whatever key you want to track your counters
|
|
mapping(string => AutoIncrementing.Counter) private counters;
|
|
|
|
function doThing(string _key)
|
|
public
|
|
returns (uint256)
|
|
{
|
|
theId = counters[_key].nextId();
|
|
return theId;
|
|
}
|
|
}
|
|
|