Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/ViewportConstraints/ISupportAttachToViewport.cs @ 13376

Last change on this file since 13376 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 765 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows;
6
7namespace Microsoft.Research.DynamicDataDisplay.ViewportConstraints
8{
9  /// <summary>
10  /// Represents a constraint which is capable to attach to or detach from <see cref="Viewport"/>, to which it is applied.
11  /// </summary>
12  public interface ISupportAttachToViewport
13  {
14    /// <summary>
15    /// Attaches the specified viewport to a constraint.
16    /// </summary>
17    /// <param name="viewport">The viewport.</param>
18    void Attach(Viewport2D viewport);
19
20    /// <summary>
21    /// Detaches the specified viewport from a constraint.
22    /// </summary>
23    /// <param name="viewport">The viewport.</param>
24    void Detach(Viewport2D viewport);
25  }
26}
Note: See TracBrowser for help on using the repository browser.