18 lines
312 B
C#
18 lines
312 B
C#
using ASCOM.Meade.net.Wrapper;
|
|
|
|
namespace ASCOM.Meade.net
|
|
{
|
|
public interface IProfileFactory
|
|
{
|
|
IProfileWrapper Create();
|
|
}
|
|
|
|
public class ProfileFactory : IProfileFactory
|
|
{
|
|
public IProfileWrapper Create()
|
|
{
|
|
return new ProfileWrapper();
|
|
}
|
|
}
|
|
}
|