summaryrefslogtreecommitdiff
path: root/lib/DefaultConstructorFactory.cs
blob: 61aab6b4552d9b8c7fd8b127b08b35a2e69e7d88 (plain)
1
2
3
4
5
6
7
8
9
10
namespace jive
{
  public class DefaultConstructorFactory<T> : ComponentFactory<T> where T : new()
  {
    public T create()
    {
      return new T();
    }
  }
}