pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/TopLevelHelper.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

42 lines
841 B
C#

#region Using Directives
using System;
using System.Text;
using System.ComponentModel;
using System.Collections;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Top level ScintillaHelpers Like Style and Folding inherit from this class so they don't have
/// to reimplement the same Equals method
/// </summary>
public class TopLevelHelper : ScintillaHelperBase
{
#region Methods
public override bool Equals(object obj)
{
return IsSameHelperFamily(obj);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
#endregion Methods
#region Constructors
internal TopLevelHelper(Scintilla scintilla) : base(scintilla) { }
#endregion Constructors
}
}