//
// ICounter.java
//

public interface ICounter
{
    void up();
    int getValue();
    void reset(int newVal);
};
