~manishsinha/zeitgeist-sharp/testing-ArrayMismatch

« back to all changes in this revision

Viewing changes to Zeitgeist/Datamodel/Delegates.cs

  • Committer: Manish Sinha
  • Date: 2010-10-09 20:17:55 UTC
  • Revision ID: mail@manishsinha.net-20101009201755-13ihhbz186cokptj
Added support for Monitor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
 
 
4
namespace Zeitgeist.Datamodel
 
5
{
 
6
        public delegate void NotifyInsertHandler(TimeRange range, List<Event> events);
 
7
        
 
8
        public delegate void NotifyDeleteHandler(TimeRange range, List<UInt32> eventIds);
 
9
}
 
10