Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/BaseClasses/SubsetActionBase.cs @ 13398

Last change on this file since 13398 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 525 bytes
Line 
1
2namespace Netron.Diagramming.Core {
3  abstract class SubsetActionBase : ActionBase, ISubsetAction {
4    #region Fields
5    CollectionBase<IDiagramEntity> mSubset = new CollectionBase<IDiagramEntity>();
6    #endregion
7
8    public CollectionBase<IDiagramEntity> Subset {
9      get {
10        return mSubset;
11      }
12
13    }
14
15    #region Constructor
16    ///<summary>
17    ///Default constructor
18    ///</summary>
19    public SubsetActionBase(string name)
20      : base(name) {
21
22    }
23    #endregion
24
25  }
26}
Note: See TracBrowser for help on using the repository browser.