src/FingersDance.Data/Annotation.cs
changeset 182 25b49d4f1635
parent 160 e940ca798fe3
child 192 11083c390ce4
--- a/src/FingersDance.Data/Annotation.cs	Wed Oct 28 13:46:38 2009 +0100
+++ b/src/FingersDance.Data/Annotation.cs	Wed Oct 28 17:07:27 2009 +0100
@@ -6,36 +6,6 @@
 
 namespace FingersDance.Data
 {
-    public class AnnotationAddedEventArg : EventArgs
-    {
-        private float _tcBegin;
-        private float _dur;
-        private String _gestureType;
-
-        public float TcBegin
-        {
-            get { return this._tcBegin; }
-        }
-        public float Dur
-        {
-            get { return this._dur; }
-        }
-        public String GestureType
-        {
-            get { return this._gestureType; }
-        }
-
-        public AnnotationAddedEventArg(float tcBegin, float dur, String gestureType)
-        {
-
-            this._tcBegin = tcBegin;
-            this._dur = dur;
-            this._gestureType = gestureType;
-
-        }
-
-    }
-
     public class Annotation
     {
         private float _tcBegin;
@@ -43,17 +13,12 @@
         private string _gestureType;
         private Color _color;
 
-        //public event EventHandler<AnnotationAddedEventArg> AnnotationAdded;
-
         public Annotation(float tcBeginPar, float durPar, string gesturePar, Color colorPar)
         {
             this._tcBegin = tcBeginPar;
             this._dur = durPar;
             this._gestureType = gesturePar;
             this._color = colorPar;
-
-            //AnnotationAdded(this, new AnnotationAddedEventArg(_tcBegin, _dur, _gestureType));
-
         }
 
         public float TcBegin