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