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/ISimpleShape.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  /// The simple shape interface.
     5  /// </summary>
     6  public interface ISimpleShape : IShape {
    77    /// <summary>
    8     /// The simple shape interface.
     8    /// Gets or sets the text of the simple shape
    99    /// </summary>
    10     public interface ISimpleShape : IShape
    11     {
    12         /// <summary>
    13         /// Gets or sets the text of the simple shape
    14         /// </summary>
    15         string Text
    16         {
    17             get;
    18             set;
    19         }
     10    string Text {
     11      get;
     12      set;
    2013    }
     14  }
    2115}
Note: See TracChangeset for help on using the changeset viewer.