Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.PluginInfrastructure;
|
---|
6 | using System.Windows.Forms;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Netron {
|
---|
9 | [Application("Netron Test Application 3.3", "A test application for netron visualizations.")]
|
---|
10 | internal class NetronTestApplication : ApplicationBase {
|
---|
11 | public override void Run() {
|
---|
12 | Application.Run(new NetronForm());
|
---|
13 | }
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.