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 @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

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