11 lines
377 B
C#
11 lines
377 B
C#
namespace RemoteFrameBuffer.Client
|
|
{
|
|
public class RemoteFrameBufferClientProtocolFactory<T> : IRemoteFramebufferClientProtocolFactory where T : RemoteFrameBufferClientProtocol
|
|
{
|
|
public RemoteFrameBufferClientProtocol Construct(Stream s)
|
|
{
|
|
return (RemoteFrameBufferClientProtocol)Activator.CreateInstance(typeof(T), s)!;
|
|
}
|
|
}
|
|
}
|