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/IO/NML/enums/GraphEdgeDefaultType.cs @ 2769

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

added unused files for netron (ticket #867)

File size: 547 bytes
Line 
1
2    using System;
3    using System.Xml;
4    using System.Xml.Serialization;
5    using System.IO;
6   
7   
8namespace Netron.GraphLib.IO.NML {   
9    /// <summary>
10    /// XML wrapper for the edge type
11    /// </summary>
12    public enum GraphEdgeDefaultType {
13        /// <summary>
14        /// Directed edge
15        /// </summary>
16        [XmlEnum(Name="directed")]
17        Directed,
18        /// <summary>
19        /// Undirected edge
20        /// </summary>
21        [XmlEnum(Name="undirected")]
22        Undirected,
23    }
24}
Note: See TracBrowser for help on using the repository browser.