Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IComplexShape.cs

    r2768 r4068  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Text;
    41
    5 namespace Netron.Diagramming.Core
    6 {
     2namespace Netron.Diagramming.Core {
     3  /// <summary>
     4  /// A complex shape is just an IShape with <see cref="IShapeMaterial"/> children
     5  /// </summary>
     6  public interface IComplexShape : IShape {
    77    /// <summary>
    8     /// A complex shape is just an IShape with <see cref="IShapeMaterial"/> children
     8    /// Gets or sets the children.
    99    /// </summary>
    10     public interface IComplexShape : IShape
    11     {
    12         /// <summary>
    13         /// Gets or sets the children.
    14         /// </summary>
    15         /// <value>The children.</value>
    16         CollectionBase<IShapeMaterial> Children
    17         {           
    18             get;
    19             set;
    20         }
     10    /// <value>The children.</value>
     11    CollectionBase<IShapeMaterial> Children {
     12      get;
     13      set;
    2114    }
     15  }
    2216}
Note: See TracChangeset for help on using the changeset viewer.