// // TPDWeakProxy.h // TPDWeakProxy // // Copyright 2013 Tetherpad. // #import /** Instances of `TPDWeakProxy` hold a weak reference to the target object. */ @interface MKT_TPDWeakProxy : NSProxy /** Initializes an `TPDWeakProxy` object with the specified target object. @param object The target object for the proxy. @return The newly initialized proxy. */ - (instancetype)initWithObject:(id)object; @end