summaryrefslogtreecommitdiff
path: root/lib/utility/Parser.cs
blob: fbe383769f08771742dea8ed5e905590a76778fc (plain)
1
2
3
4
5
6
7
namespace jive.utility
{
  public interface Parser<out T>
  {
    T parse();
  }
}