blob: eefb3b955505532834385cf430e92ac17c5efd97 [file] [log] [blame]
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
public class NSValue : NSObject, NSCopying, NSSecureCoding, NSCoding {
internal override init() {
}
public required init?(coder aDecoder: NSCoder) {
}
public func encodeWithCoder(aCoder: NSCoder) {
}
public static func supportsSecureCoding() -> Bool {
return true
}
public override func copy() -> AnyObject {
return copyWithZone(nil)
}
public func copyWithZone(zone: NSZone) -> AnyObject {
return self
}
}