public EndHandler(SeeScoreSample ss)
 {
     this.ss = ss;
 }
 public NoteHandler(SeeScoreSample ss)
 {
     this.ss = ss;
 }
 public DelayedStarter(SeeScoreSample sss, int barIndex, bool countIn)
 {
     this.sss      = sss;
     this.barIndex = barIndex;
     this.countIn  = countIn;
 }
 public BeatHandler(SeeScoreSample ss)
 {
     this.ss = ss;
 }
 public PlayerStartDispatch(DateTime when, SeeScoreSample sss)
     : base(when)
 {
     this.sss = sss;
 }
 private static void StartPlayer(SeeScoreSample sss)
 {
     sss.axWindowsMediaPlayer1.Ctlcontrols.play();
 }
 public BarEventHandler(SeeScoreSample sss)
 {
     this.sss = sss;
 }
 public AppNotifierImpl(SeeScoreSample app)
 {
     this.app = app;
 }
 public UTempo(SeeScoreSample sss)
 {
     this.sss = sss;
 }