summaryrefslogtreecommitdiff
path: root/lib/ApplicationThread.cs
blob: 574e89288738c214fef9eb3f952c8346a14c389c (plain)
1
2
3
4
5
6
7
namespace jive
{
  public interface ApplicationThread
  {
    T provide_slot_for<T>() where T : class, new();
  }
}