mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
12 lines
188 B
C#
12 lines
188 B
C#
using System.IO;
|
|
|
|
namespace Semmle.Extraction
|
|
{
|
|
public abstract class LabelledEntity : Entity
|
|
{
|
|
protected LabelledEntity(Context cx) : base(cx)
|
|
{
|
|
}
|
|
}
|
|
}
|