Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm/3.2/ToolBarItemBase.cs @ 2426

Last change on this file since 2426 was 2426, checked in by mkommend, 15 years ago

initial version of refactored mainform (ticket #771)

File size: 331 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.MainForm {
7  public abstract class ToolBarItemBase : UserInterfaceItemBase, IToolBarItem {
8    public virtual IEnumerable<string> Structure {
9      get { return Enumerable.Empty<string>(); }
10    }   
11  }
12}
Note: See TracBrowser for help on using the repository browser.