import Foundation internal class DeallocatingObject : CustomStringConvertible { private var deallocated: UnsafeMutablePointer init(deallocated: UnsafeMutablePointer) { self.deallocated = deallocated } deinit { self.deallocated.pointee = true } var description: String { get { return "" } } }