client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs
changeset 29 5f8d275750e7
parent 27 f292db96b050
child 35 43bb1b8ed555
--- a/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs	Tue Jan 05 15:53:48 2010 +0100
+++ b/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs	Fri Jan 08 11:33:24 2010 +0100
@@ -494,7 +494,39 @@
             get;
             private set;
         }
-
+        public static class WebCamControl
+        {
+            static WebCamControl()
+            {
+                CamRecordLanch = new Command("CamRecordLanch");
+                CamRecordBegin = new Command("CamRecordBegin");
+                CamRecordEnd = new Command("CamRecordEnd");
+                CamRecordStop = new Command("CamRecordStop");
+            }
+            public static Command CamRecordStop
+            {
+                get;
+                private set;
+            }
+            public static Command CamRecordLanch
+            {
+                get;
+                private set;
+            }
+            public static Command CamRecordBegin
+            {
+                get;
+                private set;
+            }
+            public static Command CamRecordEnd
+            {
+                get;
+                private set;
+            }
+            public static void Initialize()
+            {
+            }
+        }
         public static class ProductionView
         {
            
@@ -546,6 +578,7 @@
             ProductionTimeLine.Initialize();
             VideoViewer.Initialize();
             ProductionView.Initialize();
+            Commands.WebCamControl.Initialize();
             
         }
     }