mirror of
https://github.com/Dev1an/MsgPack.git
synced 2026-03-25 08:45:55 +00:00
30 lines
591 B
Swift
30 lines
591 B
Swift
//
|
|
// Decoder.swift
|
|
// MsgPack
|
|
//
|
|
// Created by Damiaan on 29/07/17.
|
|
// Copyright © 2017 dPro. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
//class MessagePackDecoder: Decoder {
|
|
// var codingPath = [CodingKey?]()
|
|
//
|
|
// var userInfo = [CodingUserInfoKey : Any]()
|
|
//
|
|
// func container<Key>(keyedBy type: Key.Type) throws -> KeyedDecodingContainer<Key> where Key : CodingKey {
|
|
// <#code#>
|
|
// }
|
|
//
|
|
// func unkeyedContainer() throws -> UnkeyedDecodingContainer {
|
|
// <#code#>
|
|
// }
|
|
//
|
|
// func singleValueContainer() throws -> SingleValueDecodingContainer {
|
|
// <#code#>
|
|
// }
|
|
//
|
|
//
|
|
//}
|
|
|