상속: System.Runtime.Remoting.Proxies.RealProxy
예제 #1
0
파일: QObject.cs 프로젝트: 0xd34df00d/Qross
 protected QObject(Type dummy)
 {
     try {
         Type proxyInterface = Qyoto.GetSignalsInterface(GetType());
         SignalInvocation realProxy = new SignalInvocation(proxyInterface, this);
         Q_EMIT = realProxy.GetTransparentProxy();
     }
     catch {
         Console.WriteLine("Could not retrieve signal interface");
     }
 }
예제 #2
0
 protected QObject(Type dummy)
 {
     try {
         Type             proxyInterface = Qyoto.GetSignalsInterface(GetType());
         SignalInvocation realProxy      = new SignalInvocation(proxyInterface, this);
         Q_EMIT = realProxy.GetTransparentProxy();
     }
     catch (Exception e) {
         Console.WriteLine("Could not retrieve signal interface: {0}", e);
     }
 }