IVideoSourceDescription.cs
911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Camara Vision
//
// Copyright Andrew Kirillov, 2005-2006
// andrew.kirillov@gmail.com
//
namespace videosource
{
using System;
using System.Xml;
/// <summary>
/// IVideoSourceDescription interface - description of video source
/// </summary>
public interface IVideoSourceDescription
{
/// <summary>
/// Name property
/// </summary>
string Name{get;}
/// <summary>
/// Description property
/// </summary>
string Description{get;}
/// <summary>
/// Return settings page
/// </summary>
IVideoSourcePage GetSettingsPage();
/// <summary>
/// Save configuration
/// </summary>
void SaveConfiguration(XmlTextWriter writer, object config);
/// <summary>
/// Load configuration
/// </summary>
object LoadConfiguration(XmlTextReader reader);
/// <summary>
/// Create video source object
/// </summary>
IVideoSource CreateVideoSource(object config);
}
}