Last change
on this file since 2438 was
2426,
checked in by mkommend, 15 years ago
|
initial version of refactored mainform (ticket #771)
|
File size:
324 bytes
|
Rev | Line | |
---|
[2426] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.MainForm {
|
---|
| 7 | public abstract class MenuItemBase : UserInterfaceItemBase, IMenuItem{
|
---|
| 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.