using System; namespace Novell.CASA.MiCasa.Communication { /// /// Summary description for IPCClientFactory. /// public class IPCClientFactory { private IPCClientFactory() { } public static ClientChannel CreateClientConnection() { #if LINUX return( new UnixIPCClientChannel()); #endif #if W32 return (new WinIPCClientChannel()); #endif } } }