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/IPaintable.cs

    r2768 r4068  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Text;
    41using System.Drawing;
    5 namespace Netron.Diagramming.Core
    6 {
     2namespace Netron.Diagramming.Core {
     3  /// <summary>
     4  /// The interface of something that can be painted on the canvas.
     5  /// </summary>
     6  public interface IPaintable {
    77    /// <summary>
    8     /// The interface of something that can be painted on the canvas.
     8    /// The bounds of the paintable entity
    99    /// </summary>
    10     public interface IPaintable
    11     {
    12         /// <summary>
    13         /// The bounds of the paintable entity
    14         /// </summary>
    15         Rectangle Rectangle
    16         {
    17             get;           
    18         }
     10    Rectangle Rectangle {
     11      get;
     12    }
    1913
    20         /// <summary>
    21         /// Paints the entity using the given graphics object
    22         /// </summary>
    23         /// <param name="g"></param>
    24         void Paint(Graphics g);
    25     }
     14    /// <summary>
     15    /// Paints the entity using the given graphics object
     16    /// </summary>
     17    /// <param name="g"></param>
     18    void Paint(Graphics g);
     19  }
    2620}
Note: See TracChangeset for help on using the changeset viewer.