changes
[IRC.git] / Robust / CoreProf / Event.java
1 public class Event {
2   public long time;
3   public int event;
4   public Counter counter;
5   public Event(long t, int ev) {
6     time=t;
7     event=ev;
8   }
9 }