/Main/src/DynamicDataDisplay.Markers2/EnvironmentPlugins/EnvironmentPlugin.cs
# · C# · 21 lines · 12 code · 1 blank · 8 comment · 0 complexity · 9e32f663a38412fda6be0ce385f8d49b MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using DynamicDataDisplay.Markers.DataSources;
-
- namespace Microsoft.Research.DynamicDataDisplay.Markers2
- {
- /// <summary>
- /// Represents a plugin which changes the way of creating environment.
- /// </summary>
- public abstract class EnvironmentPlugin
- {
- /// <summary>
- /// Creates the environment.
- /// </summary>
- /// <param name="viewport">The viewport.</param>
- /// <returns></returns>
- public abstract DataSourceEnvironment CreateEnvironment(Viewport2D viewport);
- }
- }